MTK improvements. Supports waypoints now. Adds course and speed.
authorrobertl <robertl>
Thu, 28 Feb 2008 15:45:42 +0000 (15:45 +0000)
committerrobertl <robertl>
Thu, 28 Feb 2008 15:45:42 +0000 (15:45 +0000)
mtk_logger.c
reference/track/mtk_logger.gpx
xmldoc/formats/mtk-bin.xml
xmldoc/formats/mtk.xml

index 5515f31486de7a9ffd5cab10558b7f427195db06..d1cb3fc0e8bba02a08575361a29a102c999975fd 100644 (file)
 
  Example usage::
    
-   # Read from USB port, output in GPX format   
+   # Read from USB port, output trackpoints & waypoints in GPX format   
   ./gpsbabel -D 2 -t -w -i mtk -f /dev/ttyUSB0 -o gpx -F out.gpx
   
-   # Parse an existing .bin file (data_2007_09_04.bin), output as 
+   # Parse an existing .bin file (data_2007_09_04.bin), output trackpoints as 
    #  both CSV file and GPX
-  ./gpsbabel -D 2 -t -w -i mtk-bin,csv=data__2007_09_04.csv -f data_2007_09_04.bin -o gpx -F out.gpx
+  ./gpsbabel -D 2 -t -i mtk-bin,csv=data__2007_09_04.csv -f data_2007_09_04.bin -o gpx -F out.gpx
 
   Todo:
-    o Create a testsuit of .bin to .gpx/csv files
-    o More documentation ? 
     o ....    
  
-    
-
  */
 
 #include "defs.h"
@@ -194,6 +190,7 @@ static char *port; /* serial port name */
 static char *erase;  /* erase ? command option */
 static char *csv_file; /* csv ? command option */
 static unsigned int bmask = 0x000e0e7f;
+static unsigned int mlog_period, mlog_distance, mlog_speed; /* in 10:ths of sec, m, km/h */
 
 
 const char LIVE_CHAR[4] = {'-', '\\','|','/'};
@@ -512,23 +509,24 @@ static int add_trackpoint(int idx, unsigned long bmask, struct data_item *itm){
     char     wp_name[20];
     waypoint *trk = waypt_new();
 
-    if ( trk_head == NULL ){
+    if ( global_opts.masked_objective & TRKDATAMASK && trk_head == NULL ){
         trk_head = route_head_alloc();
+        xasprintf(&trk_head->rte_desc, "Log every %.0f sec, %.0f m, %.0f km/h" 
+          , mlog_period/10., mlog_distance/10., mlog_speed/10.);
         track_add_head(trk_head);
     } 
 
-    sprintf(wp_name, "TP%04d", idx);
-
     if ( bmask & (1<<LATITUDE) && bmask & (1<<LONGITUDE) ){
        trk->latitude       = itm->lat;
        trk->longitude      = itm->lon;
     } else {
-      return -1; // GPX requires lat/lon...
+       return -1; // GPX requires lat/lon...
     }  
 
-    if ( bmask & (1<<HEIGHT) )
+    if ( bmask & (1<<HEIGHT) ){
        trk->altitude       = itm->height;
-    
+       // WAYPT_SET(trk, altitude, itm->height);
+    }
     trk->creation_time  = itm->timestamp; // in UTC..
     if ( bmask & (1<<MILLISECOND) ) 
        trk->microseconds  = MILLI_TO_MICRO(itm->timestamp_ms);
@@ -540,11 +538,12 @@ static int add_trackpoint(int idx, unsigned long bmask, struct data_item *itm){
     if ( bmask & (1<<VDOP) )
        trk->vdop = itm->vdop; 
 
-    if ( bmask & (1<<HEADING) )
-       trk->course = itm->heading; 
-    if ( bmask & (1<<SPEED) )
-       trk->speed = itm->speed; 
-
+    if ( bmask & (1<<HEADING) ){
+       WAYPT_SET(trk, course, itm->heading);
+    }
+    if ( bmask & (1<<SPEED) ){
+       WAYPT_SET(trk, speed, KPH_TO_MPS(itm->speed));
+    }
     if ( bmask & (1<<VALID) ){
        switch (itm->valid){
          case 0x0040: trk->fix = fix_unknown;break; /* Estimated mode */
@@ -565,10 +564,28 @@ static int add_trackpoint(int idx, unsigned long bmask, struct data_item *itm){
     if ( bmask & (1<<NSAT) )
        trk->sat = itm->sat_used;
        
-    trk->shortname      = xstrdup(wp_name);
-    
-    track_add_wpt(trk_head, trk);
-    
+    // RCR is a bitmask of possibly several log reasons..
+    if ( global_opts.masked_objective & WPTDATAMASK 
+       && bmask & (1<<RCR) && itm->rcr & 0x0008  )
+    {
+       /* Button press -- create waypoint, start count at 1 */
+       waypoint *w = waypt_dupe(trk);
+
+       sprintf(wp_name, "WP%04d", waypt_count()+1);
+       w->shortname      = xstrdup(wp_name);
+       waypt_add(w);
+    } 
+    // In theory we would not add the waypoint to the list of
+    // trackpoints. But as the MTK logger restart the 
+    // log session from the button press we would loose a 
+    // trackpoint unless we include/duplicate it.
+
+    if ( global_opts.masked_objective & TRKDATAMASK ){
+       sprintf(wp_name, "TP%04d", idx);
+       trk->shortname      = xstrdup(wp_name);
+
+       track_add_wpt(trk_head, trk);
+    }    
     return 0;
 }
 
@@ -907,12 +924,15 @@ static int mtk_parse_info(const unsigned char *data, int dataLen){
             break;
          case 0x03:
             dbg(1, "# Log period change %.0f sec\n", cmd/10.);
+            mlog_period = cmd;
             break;
          case 0x04:
             dbg(1, "# Log distance change %.1f m\n", cmd/10.);
+            mlog_distance = cmd;
             break;
          case 0x05:
             dbg(1, "# Log speed change %.1f km/h\n", cmd/10.);
+            mlog_speed  = cmd;
             break;
          case 0x06:
             dbg(1, "# Log policy change 0x%.4x\n", cmd);
@@ -923,9 +943,9 @@ static int mtk_parse_info(const unsigned char *data, int dataLen){
             break;
          case 0x07:
             if ( cmd == 0x0106 )
-              ; //  fprintf(stderr,"# GPS Logger# Turned On\n"); // Fixme - start new trk
+              dbg(5, "# GPS Logger# Turned On\n"); // Fixme - start new trk
             if ( cmd == 0x0104 )
-              ; //  fprintf(stderr,"# GPS Logger# Log disabled\n");
+              dbg(5, "# GPS Logger# Log disabled\n");
             break;
          default:
             dbg(1, "## Unknown INFO 0x%.2x\n", data[7]);
@@ -1002,6 +1022,10 @@ static void file_read(void) {
           mask, log_period/10., log_distance/10., log_speed/10.);
       bmask = mask;
       dbg(3, "Using initial bitmask %.8x for parsing the .bin file\n", bmask); 
+
+      mlog_period = log_period;
+      mlog_distance = log_distance;
+      mlog_speed  = log_speed;
    }
 
    pos = 0x200; // skip header...first data position 
index e7030f91bd7ff784381f43f8cee0efa5061d2b02..56fa96e3ddb9c3353a0c3105799320c7a64f8945 100644 (file)
@@ -7,71 +7,129 @@ xmlns="http://www.topografix.com/GPX/1/0"
 xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/GPX/1/0/gpx.xsd">
 <time>1970-01-01T00:00:00Z</time>
 <bounds minlat="57.697088223" minlon="11.952844574" maxlat="57.719580948" maxlon="12.016372082"/>
+<wpt lat="57.719580948" lon="12.016372082">
+  <ele>98.469612</ele>
+<time>2008-01-27T13:03:24.836Z</time>
+  <name>WP0001</name>
+  <cmt>WP0001</cmt>
+  <desc>WP0001</desc>
+  <fix>none</fix>
+</wpt>
+<wpt lat="57.707192070" lon="11.967000049">
+  <ele>34.319580</ele>
+<time>2008-01-27T14:15:09Z</time>
+  <name>WP0002</name>
+  <cmt>WP0002</cmt>
+  <desc>WP0002</desc>
+  <fix>3d</fix>
+  <sat>8</sat>
+</wpt>
+<wpt lat="57.697093407" lon="11.979470029">
+  <ele>96.420593</ele>
+<time>2008-01-27T14:32:31Z</time>
+  <name>WP0003</name>
+  <cmt>WP0003</cmt>
+  <desc>WP0003</desc>
+  <fix>3d</fix>
+  <sat>8</sat>
+</wpt>
+<wpt lat="57.707448325" lon="11.971055495">
+  <ele>25.730627</ele>
+<time>2008-01-27T15:21:20Z</time>
+  <name>WP0004</name>
+  <cmt>WP0004</cmt>
+  <desc>WP0004</desc>
+  <fix>3d</fix>
+  <sat>7</sat>
+</wpt>
 <trk>
+  <desc>Log every 5 sec, 100 m, 0 km/h</desc>
 <trkseg>
 <trkpt lat="57.719580948" lon="12.016372082">
   <ele>98.469612</ele>
 <time>2008-01-27T13:03:22.836Z</time>
+  <course>0.000000</course>
+  <speed>0.000000</speed>
   <name>TP0001</name>
   <fix>none</fix>
 </trkpt>
 <trkpt lat="57.719580948" lon="12.016372082">
   <ele>98.469612</ele>
 <time>2008-01-27T13:03:24.836Z</time>
+  <course>0.000000</course>
+  <speed>0.000000</speed>
   <name>TP0002</name>
   <fix>none</fix>
 </trkpt>
 <trkpt lat="57.719580948" lon="12.016372082">
   <ele>98.469612</ele>
 <time>2008-01-27T14:13:51.012Z</time>
+  <course>0.000000</course>
+  <speed>0.000000</speed>
   <name>TP0003</name>
   <fix>none</fix>
 </trkpt>
 <trkpt lat="57.719580948" lon="12.016372082">
   <ele>98.469612</ele>
 <time>2008-01-27T14:13:56.812Z</time>
+  <course>0.000000</course>
+  <speed>0.000000</speed>
   <name>TP0004</name>
   <fix>none</fix>
 </trkpt>
 <trkpt lat="57.719580948" lon="12.016372082">
   <ele>98.469612</ele>
 <time>2008-01-27T14:14:01.812Z</time>
+  <course>0.000000</course>
+  <speed>0.000000</speed>
   <name>TP0005</name>
   <fix>none</fix>
 </trkpt>
 <trkpt lat="57.719580948" lon="12.016372082">
   <ele>98.469612</ele>
 <time>2008-01-27T14:14:07.532Z</time>
+  <course>0.000000</course>
+  <speed>0.000000</speed>
   <name>TP0006</name>
   <fix>none</fix>
 </trkpt>
 <trkpt lat="57.719580948" lon="12.016372082">
   <ele>98.469612</ele>
 <time>2008-01-27T14:14:12.532Z</time>
+  <course>0.000000</course>
+  <speed>0.000000</speed>
   <name>TP0007</name>
   <fix>none</fix>
 </trkpt>
 <trkpt lat="57.719580948" lon="12.016372082">
   <ele>98.469612</ele>
 <time>2008-01-27T14:14:17.532Z</time>
+  <course>0.000000</course>
+  <speed>0.000000</speed>
   <name>TP0008</name>
   <fix>none</fix>
 </trkpt>
 <trkpt lat="57.719580948" lon="12.016372082">
   <ele>98.469612</ele>
 <time>2008-01-27T14:14:22.532Z</time>
+  <course>0.000000</course>
+  <speed>0.000000</speed>
   <name>TP0009</name>
   <fix>none</fix>
 </trkpt>
 <trkpt lat="57.719580948" lon="12.016372082">
   <ele>98.469612</ele>
 <time>2008-01-27T14:14:27.532Z</time>
+  <course>0.000000</course>
+  <speed>0.000000</speed>
   <name>TP0010</name>
   <fix>none</fix>
 </trkpt>
 <trkpt lat="57.705088749" lon="11.996373004">
   <ele>98.408684</ele>
 <time>2008-01-27T14:14:28.531Z</time>
+  <course>0.000000</course>
+  <speed>0.595044</speed>
   <name>TP0011</name>
   <fix>none</fix>
   <sat>2</sat>
@@ -79,6 +137,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704939213" lon="11.996336270">
   <ele>98.469284</ele>
 <time>2008-01-27T14:14:34Z</time>
+  <course>0.000000</course>
+  <speed>0.303619</speed>
   <name>TP0012</name>
   <fix>none</fix>
   <sat>2</sat>
@@ -86,6 +146,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707240157" lon="11.967281203">
   <ele>22.479507</ele>
 <time>2008-01-27T14:14:35Z</time>
+  <course>0.000000</course>
+  <speed>1.202394</speed>
   <name>TP0013</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -93,6 +155,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707219764" lon="11.967150788">
   <ele>32.486053</ele>
 <time>2008-01-27T14:14:40Z</time>
+  <course>0.000000</course>
+  <speed>1.078671</speed>
   <name>TP0014</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -100,6 +164,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707208911" lon="11.967052609">
   <ele>34.286411</ele>
 <time>2008-01-27T14:14:45Z</time>
+  <course>0.000000</course>
+  <speed>1.052290</speed>
   <name>TP0015</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -107,6 +173,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707201360" lon="11.966969623">
   <ele>33.625595</ele>
 <time>2008-01-27T14:14:50Z</time>
+  <course>0.000000</course>
+  <speed>0.991739</speed>
   <name>TP0016</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -114,6 +182,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707198262" lon="11.966947690">
   <ele>34.133461</ele>
 <time>2008-01-27T14:14:55Z</time>
+  <course>0.000000</course>
+  <speed>0.441197</speed>
   <name>TP0017</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -121,6 +191,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707198896" lon="11.966980387">
   <ele>34.461449</ele>
 <time>2008-01-27T14:15:00Z</time>
+  <course>0.000000</course>
+  <speed>0.581685</speed>
   <name>TP0018</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -128,6 +200,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707202317" lon="11.966987938">
   <ele>34.240189</ele>
 <time>2008-01-27T14:15:05Z</time>
+  <course>0.000000</course>
+  <speed>0.083656</speed>
   <name>TP0019</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -135,6 +209,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707192070" lon="11.967000049">
   <ele>34.319580</ele>
 <time>2008-01-27T14:15:09Z</time>
+  <course>0.000000</course>
+  <speed>0.332716</speed>
   <name>TP0020</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -142,6 +218,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707179823" lon="11.967054232">
   <ele>34.183079</ele>
 <time>2008-01-27T14:15:14Z</time>
+  <course>0.000000</course>
+  <speed>0.529361</speed>
   <name>TP0021</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -149,6 +227,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707140723" lon="11.967152239">
   <ele>34.388592</ele>
 <time>2008-01-27T14:15:19Z</time>
+  <course>0.000000</course>
+  <speed>1.338508</speed>
   <name>TP0022</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -156,6 +236,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707081687" lon="11.967244378">
   <ele>34.792522</ele>
 <time>2008-01-27T14:15:24Z</time>
+  <course>0.000000</course>
+  <speed>1.624839</speed>
   <name>TP0023</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -163,6 +245,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707027601" lon="11.967342311">
   <ele>35.034256</ele>
 <time>2008-01-27T14:15:29Z</time>
+  <course>0.000000</course>
+  <speed>1.647150</speed>
   <name>TP0024</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -170,6 +254,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706993080" lon="11.967462347">
   <ele>35.393795</ele>
 <time>2008-01-27T14:15:34Z</time>
+  <course>0.000000</course>
+  <speed>1.380853</speed>
   <name>TP0025</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -177,6 +263,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706920227" lon="11.967555755">
   <ele>34.952080</ele>
 <time>2008-01-27T14:15:39Z</time>
+  <course>145.024078</course>
+  <speed>1.745507</speed>
   <name>TP0026</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -184,6 +272,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706864560" lon="11.967651461">
   <ele>36.920841</ele>
 <time>2008-01-27T14:15:44Z</time>
+  <course>142.223740</course>
+  <speed>1.848763</speed>
   <name>TP0027</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -191,6 +281,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706812031" lon="11.967755893">
   <ele>36.358654</ele>
 <time>2008-01-27T14:15:49Z</time>
+  <course>144.998688</course>
+  <speed>1.514581</speed>
   <name>TP0028</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -198,6 +290,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706746343" lon="11.967810275">
   <ele>35.561657</ele>
 <time>2008-01-27T14:15:54Z</time>
+  <course>144.998688</course>
+  <speed>1.358067</speed>
   <name>TP0029</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -205,6 +299,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706676855" lon="11.967837324">
   <ele>35.367092</ele>
 <time>2008-01-27T14:15:59Z</time>
+  <course>144.998688</course>
+  <speed>1.377709</speed>
   <name>TP0030</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -212,6 +308,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706618042" lon="11.967878110">
   <ele>35.278236</ele>
 <time>2008-01-27T14:16:04Z</time>
+  <course>144.998688</course>
+  <speed>1.568756</speed>
   <name>TP0031</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -219,6 +317,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706547458" lon="11.967902545">
   <ele>34.554344</ele>
 <time>2008-01-27T14:16:09Z</time>
+  <course>144.998688</course>
+  <speed>1.633001</speed>
   <name>TP0032</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -226,6 +326,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706513431" lon="11.967904576">
   <ele>35.263260</ele>
 <time>2008-01-27T14:16:14Z</time>
+  <course>144.998688</course>
+  <speed>0.050764</speed>
   <name>TP0033</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -233,6 +335,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706515415" lon="11.967899731">
   <ele>35.184391</ele>
 <time>2008-01-27T14:16:19Z</time>
+  <course>144.998688</course>
+  <speed>0.427177</speed>
   <name>TP0034</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -240,6 +344,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706514736" lon="11.967898481">
   <ele>35.184006</ele>
 <time>2008-01-27T14:16:24Z</time>
+  <course>144.998688</course>
+  <speed>0.030582</speed>
   <name>TP0035</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -247,6 +353,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706514435" lon="11.967898229">
   <ele>35.194073</ele>
 <time>2008-01-27T14:16:29Z</time>
+  <course>144.998688</course>
+  <speed>0.004273</speed>
   <name>TP0036</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -254,6 +362,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706514179" lon="11.967897821">
   <ele>35.194149</ele>
 <time>2008-01-27T14:16:34Z</time>
+  <course>144.998688</course>
+  <speed>0.007845</speed>
   <name>TP0037</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -261,6 +371,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706513479" lon="11.967897582">
   <ele>35.195225</ele>
 <time>2008-01-27T14:16:39Z</time>
+  <course>144.998688</course>
+  <speed>0.008956</speed>
   <name>TP0038</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -268,6 +380,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706493026" lon="11.967903904">
   <ele>35.154613</ele>
 <time>2008-01-27T14:16:44Z</time>
+  <course>144.998688</course>
+  <speed>1.449671</speed>
   <name>TP0039</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -275,6 +389,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706432005" lon="11.967965905">
   <ele>36.225224</ele>
 <time>2008-01-27T14:16:49Z</time>
+  <course>148.006943</course>
+  <speed>1.417506</speed>
   <name>TP0040</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -282,6 +398,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706373418" lon="11.968041215">
   <ele>35.693150</ele>
 <time>2008-01-27T14:16:54Z</time>
+  <course>145.174026</course>
+  <speed>1.316705</speed>
   <name>TP0041</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -289,6 +407,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706330044" lon="11.968088815">
   <ele>36.124382</ele>
 <time>2008-01-27T14:16:59Z</time>
+  <course>145.174026</course>
+  <speed>0.666859</speed>
   <name>TP0042</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -296,6 +416,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706290973" lon="11.968096204">
   <ele>34.864819</ele>
 <time>2008-01-27T14:17:04Z</time>
+  <course>145.174026</course>
+  <speed>0.295886</speed>
   <name>TP0043</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -303,6 +425,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706252210" lon="11.968083270">
   <ele>34.707458</ele>
 <time>2008-01-27T14:17:09Z</time>
+  <course>145.174026</course>
+  <speed>0.823240</speed>
   <name>TP0044</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -310,6 +434,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706197128" lon="11.968101655">
   <ele>35.034626</ele>
 <time>2008-01-27T14:17:14Z</time>
+  <course>145.174026</course>
+  <speed>1.485445</speed>
   <name>TP0045</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -317,6 +443,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706131745" lon="11.968131812">
   <ele>35.846035</ele>
 <time>2008-01-27T14:17:19Z</time>
+  <course>145.174026</course>
+  <speed>1.036942</speed>
   <name>TP0046</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -324,6 +452,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706048357" lon="11.968162518">
   <ele>36.722980</ele>
 <time>2008-01-27T14:17:24Z</time>
+  <course>193.604065</course>
+  <speed>2.036720</speed>
   <name>TP0047</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -331,6 +461,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706020735" lon="11.968162755">
   <ele>36.815575</ele>
 <time>2008-01-27T14:17:29Z</time>
+  <course>193.604065</course>
+  <speed>0.033974</speed>
   <name>TP0048</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -338,6 +470,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706022825" lon="11.968161295">
   <ele>36.775021</ele>
 <time>2008-01-27T14:17:34Z</time>
+  <course>193.604065</course>
+  <speed>0.102273</speed>
   <name>TP0049</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -345,6 +479,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706017476" lon="11.968170326">
   <ele>36.755974</ele>
 <time>2008-01-27T14:17:39Z</time>
+  <course>193.604065</course>
+  <speed>0.336602</speed>
   <name>TP0050</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -352,6 +488,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706004844" lon="11.968187652">
   <ele>36.742401</ele>
 <time>2008-01-27T14:17:44Z</time>
+  <course>193.604065</course>
+  <speed>0.485956</speed>
   <name>TP0051</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -359,6 +497,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705990081" lon="11.968205939">
   <ele>36.739773</ele>
 <time>2008-01-27T14:17:49Z</time>
+  <course>193.604065</course>
+  <speed>0.192314</speed>
   <name>TP0052</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -366,6 +506,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706006725" lon="11.968193613">
   <ele>36.762974</ele>
 <time>2008-01-27T14:17:54Z</time>
+  <course>193.604065</course>
+  <speed>1.067858</speed>
   <name>TP0053</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -373,6 +515,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706114584" lon="11.968265592">
   <ele>36.767914</ele>
 <time>2008-01-27T14:17:59Z</time>
+  <course>351.843750</course>
+  <speed>2.428406</speed>
   <name>TP0054</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -380,6 +524,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706185747" lon="11.968516327">
   <ele>37.722569</ele>
 <time>2008-01-27T14:18:04Z</time>
+  <course>2.294798</course>
+  <speed>0.254981</speed>
   <name>TP0055</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -387,6 +533,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706125307" lon="11.968584464">
   <ele>38.270573</ele>
 <time>2008-01-27T14:18:09Z</time>
+  <course>2.294798</course>
+  <speed>0.739139</speed>
   <name>TP0056</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -394,6 +542,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706084100" lon="11.968609224">
   <ele>39.400570</ele>
 <time>2008-01-27T14:18:14Z</time>
+  <course>2.294798</course>
+  <speed>1.418809</speed>
   <name>TP0057</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -401,6 +551,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705972397" lon="11.968670286">
   <ele>42.657951</ele>
 <time>2008-01-27T14:18:19Z</time>
+  <course>2.294798</course>
+  <speed>1.219950</speed>
   <name>TP0058</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -408,6 +560,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705860388" lon="11.968734035">
   <ele>44.570877</ele>
 <time>2008-01-27T14:18:24Z</time>
+  <course>143.381439</course>
+  <speed>1.271205</speed>
   <name>TP0059</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -415,6 +569,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705777256" lon="11.968797278">
   <ele>46.084393</ele>
 <time>2008-01-27T14:18:29Z</time>
+  <course>143.381439</course>
+  <speed>1.521001</speed>
   <name>TP0060</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -422,6 +578,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705688083" lon="11.968830142">
   <ele>47.521702</ele>
 <time>2008-01-27T14:18:34Z</time>
+  <course>143.381439</course>
+  <speed>1.205074</speed>
   <name>TP0061</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -429,6 +587,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705562387" lon="11.968854241">
   <ele>46.846340</ele>
 <time>2008-01-27T14:18:39Z</time>
+  <course>140.877411</course>
+  <speed>1.394174</speed>
   <name>TP0062</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -436,6 +596,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705428991" lon="11.968857420">
   <ele>42.743946</ele>
 <time>2008-01-27T14:18:44Z</time>
+  <course>140.877411</course>
+  <speed>1.373265</speed>
   <name>TP0063</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -443,6 +605,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705335307" lon="11.968907520">
   <ele>41.074448</ele>
 <time>2008-01-27T14:18:49Z</time>
+  <course>140.877411</course>
+  <speed>1.949689</speed>
   <name>TP0064</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -450,6 +614,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705285456" lon="11.968813814">
   <ele>53.912285</ele>
 <time>2008-01-27T14:18:54Z</time>
+  <course>142.614777</course>
+  <speed>1.026324</speed>
   <name>TP0065</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -457,6 +623,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705249968" lon="11.968785850">
   <ele>57.604111</ele>
 <time>2008-01-27T14:18:59Z</time>
+  <course>142.614777</course>
+  <speed>1.223418</speed>
   <name>TP0066</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -464,6 +632,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705180542" lon="11.968788409">
   <ele>59.425282</ele>
 <time>2008-01-27T14:19:04Z</time>
+  <course>144.389893</course>
+  <speed>1.751635</speed>
   <name>TP0067</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -471,6 +641,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705107236" lon="11.968812930">
   <ele>59.241436</ele>
 <time>2008-01-27T14:19:09Z</time>
+  <course>144.389893</course>
+  <speed>1.294486</speed>
   <name>TP0068</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -478,6 +650,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705026737" lon="11.968818995">
   <ele>56.955845</ele>
 <time>2008-01-27T14:19:14Z</time>
+  <course>144.389893</course>
+  <speed>1.647364</speed>
   <name>TP0069</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -485,6 +659,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704950515" lon="11.968824494">
   <ele>55.168156</ele>
 <time>2008-01-27T14:19:19Z</time>
+  <course>144.389893</course>
+  <speed>1.607520</speed>
   <name>TP0070</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -492,6 +668,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704891436" lon="11.968841337">
   <ele>52.903522</ele>
 <time>2008-01-27T14:19:24Z</time>
+  <course>142.798004</course>
+  <speed>1.142946</speed>
   <name>TP0071</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -499,6 +677,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704841009" lon="11.968863818">
   <ele>52.243340</ele>
 <time>2008-01-27T14:19:29Z</time>
+  <course>142.798004</course>
+  <speed>1.183903</speed>
   <name>TP0072</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -506,6 +686,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704798400" lon="11.968901884">
   <ele>53.329205</ele>
 <time>2008-01-27T14:19:34Z</time>
+  <course>142.798004</course>
+  <speed>0.747410</speed>
   <name>TP0073</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -513,6 +695,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704765119" lon="11.968932591">
   <ele>51.154198</ele>
 <time>2008-01-27T14:19:39Z</time>
+  <course>142.798004</course>
+  <speed>1.393951</speed>
   <name>TP0074</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -520,6 +704,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704710293" lon="11.969005709">
   <ele>50.982079</ele>
 <time>2008-01-27T14:19:44Z</time>
+  <course>142.061447</course>
+  <speed>0.568036</speed>
   <name>TP0075</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -527,6 +713,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704649014" lon="11.969040109">
   <ele>50.856762</ele>
 <time>2008-01-27T14:19:49Z</time>
+  <course>142.061447</course>
+  <speed>1.264928</speed>
   <name>TP0076</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -534,6 +722,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704526080" lon="11.969103073">
   <ele>49.895744</ele>
 <time>2008-01-27T14:19:54Z</time>
+  <course>142.061447</course>
+  <speed>1.597790</speed>
   <name>TP0077</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -541,6 +731,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704421007" lon="11.969261517">
   <ele>46.709484</ele>
 <time>2008-01-27T14:19:59Z</time>
+  <course>152.146713</course>
+  <speed>1.557961</speed>
   <name>TP0078</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -548,6 +740,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704346631" lon="11.969332368">
   <ele>43.882195</ele>
 <time>2008-01-27T14:20:04Z</time>
+  <course>153.529343</course>
+  <speed>1.451341</speed>
   <name>TP0079</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -555,6 +749,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704288454" lon="11.969263529">
   <ele>41.683334</ele>
 <time>2008-01-27T14:20:09Z</time>
+  <course>153.529343</course>
+  <speed>1.783310</speed>
   <name>TP0080</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -562,6 +758,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704252070" lon="11.969199905">
   <ele>42.076900</ele>
 <time>2008-01-27T14:20:14Z</time>
+  <course>153.663147</course>
+  <speed>1.164113</speed>
   <name>TP0081</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -569,6 +767,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704212533" lon="11.969242656">
   <ele>40.519577</ele>
 <time>2008-01-27T14:20:19Z</time>
+  <course>153.663147</course>
+  <speed>1.421694</speed>
   <name>TP0082</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -576,6 +776,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704157032" lon="11.969264292">
   <ele>40.441086</ele>
 <time>2008-01-27T14:20:24Z</time>
+  <course>150.640991</course>
+  <speed>1.617561</speed>
   <name>TP0083</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -583,6 +785,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704115604" lon="11.969268722">
   <ele>38.741417</ele>
 <time>2008-01-27T14:20:29Z</time>
+  <course>150.640991</course>
+  <speed>1.615349</speed>
   <name>TP0084</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -590,6 +794,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704060348" lon="11.969300391">
   <ele>40.093151</ele>
 <time>2008-01-27T14:20:34Z</time>
+  <course>149.428802</course>
+  <speed>1.545561</speed>
   <name>TP0085</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -597,6 +803,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704002173" lon="11.969344400">
   <ele>43.699978</ele>
 <time>2008-01-27T14:20:39Z</time>
+  <course>149.875687</course>
+  <speed>1.716336</speed>
   <name>TP0086</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -604,6 +812,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703946079" lon="11.969419174">
   <ele>45.618553</ele>
 <time>2008-01-27T14:20:44Z</time>
+  <course>152.252014</course>
+  <speed>1.283200</speed>
   <name>TP0087</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -611,6 +821,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703872688" lon="11.969493610">
   <ele>45.382668</ele>
 <time>2008-01-27T14:20:49Z</time>
+  <course>152.252014</course>
+  <speed>1.692029</speed>
   <name>TP0088</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -618,6 +830,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703824544" lon="11.969619901">
   <ele>43.774300</ele>
 <time>2008-01-27T14:20:54Z</time>
+  <course>152.252014</course>
+  <speed>1.408383</speed>
   <name>TP0089</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -625,6 +839,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703768699" lon="11.969732487">
   <ele>42.711369</ele>
 <time>2008-01-27T14:20:59Z</time>
+  <course>149.309753</course>
+  <speed>1.432592</speed>
   <name>TP0090</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -632,6 +848,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703739438" lon="11.969839353">
   <ele>41.587543</ele>
 <time>2008-01-27T14:21:04Z</time>
+  <course>149.309753</course>
+  <speed>1.508936</speed>
   <name>TP0091</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -639,6 +857,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703712494" lon="11.969976441">
   <ele>39.019386</ele>
 <time>2008-01-27T14:21:09Z</time>
+  <course>149.309753</course>
+  <speed>1.569397</speed>
   <name>TP0092</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -646,6 +866,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703657739" lon="11.970096890">
   <ele>37.535275</ele>
 <time>2008-01-27T14:21:14Z</time>
+  <course>149.309753</course>
+  <speed>1.275553</speed>
   <name>TP0093</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -653,6 +875,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703608218" lon="11.970196014">
   <ele>37.183327</ele>
 <time>2008-01-27T14:21:19Z</time>
+  <course>149.309753</course>
+  <speed>1.765915</speed>
   <name>TP0094</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -660,6 +884,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703552606" lon="11.970281588">
   <ele>35.909645</ele>
 <time>2008-01-27T14:21:24Z</time>
+  <course>145.645874</course>
+  <speed>1.477868</speed>
   <name>TP0095</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -667,6 +893,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703497189" lon="11.970365313">
   <ele>36.647190</ele>
 <time>2008-01-27T14:21:29Z</time>
+  <course>148.902954</course>
+  <speed>1.543354</speed>
   <name>TP0096</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -674,6 +902,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703447588" lon="11.970437069">
   <ele>35.835602</ele>
 <time>2008-01-27T14:21:34Z</time>
+  <course>144.122391</course>
+  <speed>1.388543</speed>
   <name>TP0097</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -681,6 +911,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703386143" lon="11.970509635">
   <ele>35.017097</ele>
 <time>2008-01-27T14:21:39Z</time>
+  <course>146.880249</course>
+  <speed>1.644109</speed>
   <name>TP0098</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -688,6 +920,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703320274" lon="11.970583355">
   <ele>35.753429</ele>
 <time>2008-01-27T14:21:44Z</time>
+  <course>148.921082</course>
+  <speed>1.730035</speed>
   <name>TP0099</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -695,6 +929,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703251694" lon="11.970651626">
   <ele>35.330765</ele>
 <time>2008-01-27T14:21:49Z</time>
+  <course>150.968842</course>
+  <speed>1.515581</speed>
   <name>TP0100</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -702,6 +938,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703203313" lon="11.970722402">
   <ele>36.076145</ele>
 <time>2008-01-27T14:21:54Z</time>
+  <course>150.968842</course>
+  <speed>1.840335</speed>
   <name>TP0101</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -709,6 +947,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703141435" lon="11.970776319">
   <ele>35.706478</ele>
 <time>2008-01-27T14:21:59Z</time>
+  <course>148.422119</course>
+  <speed>1.373394</speed>
   <name>TP0102</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -716,6 +956,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703072283" lon="11.970803700">
   <ele>35.922268</ele>
 <time>2008-01-27T14:22:04Z</time>
+  <course>148.422119</course>
+  <speed>1.590267</speed>
   <name>TP0103</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -723,6 +965,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703019946" lon="11.970877007">
   <ele>36.544731</ele>
 <time>2008-01-27T14:22:09Z</time>
+  <course>151.107529</course>
+  <speed>1.409475</speed>
   <name>TP0104</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -730,6 +974,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702965944" lon="11.970963907">
   <ele>36.327339</ele>
 <time>2008-01-27T14:22:14Z</time>
+  <course>151.107529</course>
+  <speed>1.554864</speed>
   <name>TP0105</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -737,6 +983,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702905745" lon="11.971040173">
   <ele>37.919357</ele>
 <time>2008-01-27T14:22:19Z</time>
+  <course>151.477859</course>
+  <speed>1.751008</speed>
   <name>TP0106</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -744,6 +992,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702841025" lon="11.971125418">
   <ele>37.317135</ele>
 <time>2008-01-27T14:22:24Z</time>
+  <course>151.477859</course>
+  <speed>1.522876</speed>
   <name>TP0107</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -751,6 +1001,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702773725" lon="11.971214696">
   <ele>37.531166</ele>
 <time>2008-01-27T14:22:29Z</time>
+  <course>151.477859</course>
+  <speed>1.714622</speed>
   <name>TP0108</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -758,6 +1010,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702716196" lon="11.971302538">
   <ele>36.046326</ele>
 <time>2008-01-27T14:22:34Z</time>
+  <course>152.840408</course>
+  <speed>1.502839</speed>
   <name>TP0109</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -765,6 +1019,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702654459" lon="11.971376446">
   <ele>35.769428</ele>
 <time>2008-01-27T14:22:39Z</time>
+  <course>149.361832</course>
+  <speed>1.327224</speed>
   <name>TP0110</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -772,6 +1028,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702598166" lon="11.971459569">
   <ele>36.368031</ele>
 <time>2008-01-27T14:22:44Z</time>
+  <course>152.900650</course>
+  <speed>1.765702</speed>
   <name>TP0111</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -779,6 +1037,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702544066" lon="11.971540002">
   <ele>36.278912</ele>
 <time>2008-01-27T14:22:49Z</time>
+  <course>151.154800</course>
+  <speed>1.519747</speed>
   <name>TP0112</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -786,6 +1046,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702491036" lon="11.971608046">
   <ele>36.259140</ele>
 <time>2008-01-27T14:22:54Z</time>
+  <course>147.538422</course>
+  <speed>1.362496</speed>
   <name>TP0113</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -793,6 +1055,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702441306" lon="11.971677658">
   <ele>37.068027</ele>
 <time>2008-01-27T14:22:59Z</time>
+  <course>147.538422</course>
+  <speed>1.420440</speed>
   <name>TP0114</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -800,6 +1064,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702396565" lon="11.971744821">
   <ele>37.290741</ele>
 <time>2008-01-27T14:23:04Z</time>
+  <course>147.538422</course>
+  <speed>1.322631</speed>
   <name>TP0115</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -807,6 +1073,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702389118" lon="11.971776216">
   <ele>36.767784</ele>
 <time>2008-01-27T14:23:09Z</time>
+  <course>147.538422</course>
+  <speed>0.003731</speed>
   <name>TP0116</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -814,6 +1082,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702389089" lon="11.971776247">
   <ele>36.756531</ele>
 <time>2008-01-27T14:23:14Z</time>
+  <course>147.538422</course>
+  <speed>0.005525</speed>
   <name>TP0117</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -821,6 +1091,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702387348" lon="11.971778732">
   <ele>36.756294</ele>
 <time>2008-01-27T14:23:19Z</time>
+  <course>147.538422</course>
+  <speed>0.357651</speed>
   <name>TP0118</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -828,6 +1100,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702382070" lon="11.971772215">
   <ele>36.850208</ele>
 <time>2008-01-27T14:23:24Z</time>
+  <course>147.538422</course>
+  <speed>0.008619</speed>
   <name>TP0119</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -835,6 +1109,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702359711" lon="11.971812942">
   <ele>36.804157</ele>
 <time>2008-01-27T14:23:29Z</time>
+  <course>147.397430</course>
+  <speed>1.517090</speed>
   <name>TP0120</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -842,6 +1118,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702310411" lon="11.971900017">
   <ele>37.637447</ele>
 <time>2008-01-27T14:23:34Z</time>
+  <course>146.144302</course>
+  <speed>1.761965</speed>
   <name>TP0121</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -849,6 +1127,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702262314" lon="11.971989028">
   <ele>37.108601</ele>
 <time>2008-01-27T14:23:39Z</time>
+  <course>146.144302</course>
+  <speed>1.467335</speed>
   <name>TP0122</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -856,6 +1136,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702204678" lon="11.972076904">
   <ele>36.777046</ele>
 <time>2008-01-27T14:23:44Z</time>
+  <course>142.318588</course>
+  <speed>1.496280</speed>
   <name>TP0123</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -863,6 +1145,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702166989" lon="11.972155059">
   <ele>36.541397</ele>
 <time>2008-01-27T14:23:49Z</time>
+  <course>141.388947</course>
+  <speed>1.330305</speed>
   <name>TP0124</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -870,6 +1154,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702114436" lon="11.972224781">
   <ele>37.536469</ele>
 <time>2008-01-27T14:23:54Z</time>
+  <course>143.495270</course>
+  <speed>1.198822</speed>
   <name>TP0125</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -877,6 +1163,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702075050" lon="11.972305473">
   <ele>38.682537</ele>
 <time>2008-01-27T14:23:59Z</time>
+  <course>143.495270</course>
+  <speed>1.067729</speed>
   <name>TP0126</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -884,6 +1172,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702030648" lon="11.972358288">
   <ele>40.179867</ele>
 <time>2008-01-27T14:24:04Z</time>
+  <course>143.495270</course>
+  <speed>1.624703</speed>
   <name>TP0127</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -891,6 +1181,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702004709" lon="11.972404728">
   <ele>40.463760</ele>
 <time>2008-01-27T14:24:09Z</time>
+  <course>143.495270</course>
+  <speed>0.698972</speed>
   <name>TP0128</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -898,6 +1190,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701940868" lon="11.972474947">
   <ele>40.150234</ele>
 <time>2008-01-27T14:24:14Z</time>
+  <course>142.500504</course>
+  <speed>1.356076</speed>
   <name>TP0129</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -905,6 +1199,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701902172" lon="11.972564791">
   <ele>41.289188</ele>
 <time>2008-01-27T14:24:19Z</time>
+  <course>142.500504</course>
+  <speed>1.253808</speed>
   <name>TP0130</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -912,6 +1208,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701853823" lon="11.972631270">
   <ele>43.596752</ele>
 <time>2008-01-27T14:24:24Z</time>
+  <course>142.500504</course>
+  <speed>1.438421</speed>
   <name>TP0131</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -919,6 +1217,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701805618" lon="11.972703599">
   <ele>45.536652</ele>
 <time>2008-01-27T14:24:29Z</time>
+  <course>144.574066</course>
+  <speed>1.567921</speed>
   <name>TP0132</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -926,6 +1226,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701764563" lon="11.972797043">
   <ele>46.517883</ele>
 <time>2008-01-27T14:24:34Z</time>
+  <course>144.574066</course>
+  <speed>1.231057</speed>
   <name>TP0133</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -933,6 +1235,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701718769" lon="11.972896298">
   <ele>47.777119</ele>
 <time>2008-01-27T14:24:39Z</time>
+  <course>144.574066</course>
+  <speed>1.233039</speed>
   <name>TP0134</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -940,6 +1244,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701651896" lon="11.972960223">
   <ele>47.737053</ele>
 <time>2008-01-27T14:24:44Z</time>
+  <course>139.446564</course>
+  <speed>1.574051</speed>
   <name>TP0135</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -947,6 +1253,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701601603" lon="11.973009237">
   <ele>48.639462</ele>
 <time>2008-01-27T14:24:49Z</time>
+  <course>139.909683</course>
+  <speed>1.701256</speed>
   <name>TP0136</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -954,6 +1262,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701563759" lon="11.973088284">
   <ele>49.968063</ele>
 <time>2008-01-27T14:24:54Z</time>
+  <course>139.909683</course>
+  <speed>1.306830</speed>
   <name>TP0137</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -961,6 +1271,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701514573" lon="11.973171478">
   <ele>52.496399</ele>
 <time>2008-01-27T14:24:59Z</time>
+  <course>140.883011</course>
+  <speed>1.270463</speed>
   <name>TP0138</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -968,6 +1280,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701464577" lon="11.973251720">
   <ele>55.388054</ele>
 <time>2008-01-27T14:25:04Z</time>
+  <course>142.145920</course>
+  <speed>1.708128</speed>
   <name>TP0139</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -975,6 +1289,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701427698" lon="11.973333153">
   <ele>57.298538</ele>
 <time>2008-01-27T14:25:09Z</time>
+  <course>141.485916</course>
+  <speed>1.370716</speed>
   <name>TP0140</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -982,6 +1298,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701378261" lon="11.973415913">
   <ele>58.614559</ele>
 <time>2008-01-27T14:25:14Z</time>
+  <course>139.331635</course>
+  <speed>1.306925</speed>
   <name>TP0141</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -989,6 +1307,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701333370" lon="11.973494698">
   <ele>61.026787</ele>
 <time>2008-01-27T14:25:19Z</time>
+  <course>140.293564</course>
+  <speed>1.095566</speed>
   <name>TP0142</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -996,6 +1316,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701295032" lon="11.973585350">
   <ele>63.130711</ele>
 <time>2008-01-27T14:25:24Z</time>
+  <course>142.518753</course>
+  <speed>1.669077</speed>
   <name>TP0143</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1003,6 +1325,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701252499" lon="11.973650169">
   <ele>64.941925</ele>
 <time>2008-01-27T14:25:29Z</time>
+  <course>142.518753</course>
+  <speed>1.363789</speed>
   <name>TP0144</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1010,6 +1334,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701195830" lon="11.973733411">
   <ele>65.995216</ele>
 <time>2008-01-27T14:25:34Z</time>
+  <course>143.172440</course>
+  <speed>1.436229</speed>
   <name>TP0145</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1017,6 +1343,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701144577" lon="11.973814160">
   <ele>66.960083</ele>
 <time>2008-01-27T14:25:39Z</time>
+  <course>143.604630</course>
+  <speed>1.676285</speed>
   <name>TP0146</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1024,6 +1352,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701097062" lon="11.973898350">
   <ele>66.496315</ele>
 <time>2008-01-27T14:25:44Z</time>
+  <course>143.604630</course>
+  <speed>1.599863</speed>
   <name>TP0147</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1031,6 +1361,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701038351" lon="11.973963964">
   <ele>66.284981</ele>
 <time>2008-01-27T14:25:49Z</time>
+  <course>144.729324</course>
+  <speed>1.224165</speed>
   <name>TP0148</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1038,6 +1370,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700891774" lon="11.974022099">
   <ele>54.863914</ele>
 <time>2008-01-27T14:25:54Z</time>
+  <course>141.792358</course>
+  <speed>1.480727</speed>
   <name>TP0149</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1045,6 +1379,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700807355" lon="11.974076908">
   <ele>49.538685</ele>
 <time>2008-01-27T14:25:59Z</time>
+  <course>141.792358</course>
+  <speed>1.367680</speed>
   <name>TP0150</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1052,6 +1388,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700763096" lon="11.974153435">
   <ele>48.265648</ele>
 <time>2008-01-27T14:26:04Z</time>
+  <course>138.983597</course>
+  <speed>1.635845</speed>
   <name>TP0151</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1059,6 +1397,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700701583" lon="11.974226627">
   <ele>46.361546</ele>
 <time>2008-01-27T14:26:09Z</time>
+  <course>154.235672</course>
+  <speed>2.004167</speed>
   <name>TP0152</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1066,6 +1406,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700652036" lon="11.974286590">
   <ele>45.062138</ele>
 <time>2008-01-27T14:26:14Z</time>
+  <course>152.009735</course>
+  <speed>1.570184</speed>
   <name>TP0153</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -1073,6 +1415,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700596248" lon="11.974367304">
   <ele>45.015408</ele>
 <time>2008-01-27T14:26:19Z</time>
+  <course>152.009735</course>
+  <speed>1.360496</speed>
   <name>TP0154</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1080,6 +1424,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700538963" lon="11.974445216">
   <ele>46.407997</ele>
 <time>2008-01-27T14:26:24Z</time>
+  <course>146.927551</course>
+  <speed>1.442805</speed>
   <name>TP0155</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1087,6 +1433,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700501306" lon="11.974527630">
   <ele>48.431839</ele>
 <time>2008-01-27T14:26:29Z</time>
+  <course>144.441391</course>
+  <speed>1.576182</speed>
   <name>TP0156</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1094,6 +1442,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700449376" lon="11.974600517">
   <ele>50.567123</ele>
 <time>2008-01-27T14:26:34Z</time>
+  <course>148.208267</course>
+  <speed>1.192787</speed>
   <name>TP0157</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1101,6 +1451,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700399095" lon="11.974682395">
   <ele>51.602558</ele>
 <time>2008-01-27T14:26:39Z</time>
+  <course>148.208267</course>
+  <speed>1.119605</speed>
   <name>TP0158</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1108,6 +1460,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700364538" lon="11.974766954">
   <ele>53.745941</ele>
 <time>2008-01-27T14:26:44Z</time>
+  <course>148.208267</course>
+  <speed>1.571468</speed>
   <name>TP0159</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1115,6 +1469,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700315878" lon="11.974831610">
   <ele>56.361366</ele>
 <time>2008-01-27T14:26:49Z</time>
+  <course>148.971863</course>
+  <speed>1.579011</speed>
   <name>TP0160</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1122,6 +1478,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700283045" lon="11.974907986">
   <ele>58.787598</ele>
 <time>2008-01-27T14:26:54Z</time>
+  <course>146.601395</course>
+  <speed>1.278249</speed>
   <name>TP0161</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1129,6 +1487,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700239882" lon="11.974999706">
   <ele>60.957695</ele>
 <time>2008-01-27T14:26:59Z</time>
+  <course>148.007050</course>
+  <speed>1.162211</speed>
   <name>TP0162</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1136,6 +1496,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700172418" lon="11.975046275">
   <ele>63.889812</ele>
 <time>2008-01-27T14:27:04Z</time>
+  <course>148.007050</course>
+  <speed>1.649157</speed>
   <name>TP0163</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1143,6 +1505,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700144249" lon="11.975124321">
   <ele>67.956284</ele>
 <time>2008-01-27T14:27:09Z</time>
+  <course>149.515228</course>
+  <speed>1.289196</speed>
   <name>TP0164</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1150,6 +1514,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700102653" lon="11.975198223">
   <ele>71.878624</ele>
 <time>2008-01-27T14:27:14Z</time>
+  <course>149.515228</course>
+  <speed>1.561889</speed>
   <name>TP0165</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1157,6 +1523,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700063491" lon="11.975268429">
   <ele>74.785545</ele>
 <time>2008-01-27T14:27:19Z</time>
+  <course>149.515228</course>
+  <speed>1.305686</speed>
   <name>TP0166</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1164,6 +1532,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700009802" lon="11.975334032">
   <ele>77.086639</ele>
 <time>2008-01-27T14:27:24Z</time>
+  <course>149.515228</course>
+  <speed>1.195862</speed>
   <name>TP0167</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1171,6 +1541,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699976082" lon="11.975420704">
   <ele>78.694016</ele>
 <time>2008-01-27T14:27:29Z</time>
+  <course>147.837906</course>
+  <speed>1.020726</speed>
   <name>TP0168</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1178,6 +1550,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699933344" lon="11.975551448">
   <ele>74.406738</ele>
 <time>2008-01-27T14:27:34Z</time>
+  <course>147.837906</course>
+  <speed>0.907884</speed>
   <name>TP0169</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1185,6 +1559,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699860840" lon="11.975623321">
   <ele>70.901184</ele>
 <time>2008-01-27T14:27:39Z</time>
+  <course>147.837906</course>
+  <speed>1.467844</speed>
   <name>TP0170</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -1192,6 +1568,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699765808" lon="11.975626676">
   <ele>69.342346</ele>
 <time>2008-01-27T14:27:44Z</time>
+  <course>148.045532</course>
+  <speed>1.515221</speed>
   <name>TP0171</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -1199,6 +1577,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699713502" lon="11.975700578">
   <ele>69.502632</ele>
 <time>2008-01-27T14:27:49Z</time>
+  <course>148.045532</course>
+  <speed>1.191063</speed>
   <name>TP0172</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1206,6 +1586,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699677377" lon="11.975772104">
   <ele>74.142738</ele>
 <time>2008-01-27T14:27:54Z</time>
+  <course>148.045532</course>
+  <speed>1.293753</speed>
   <name>TP0173</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1213,6 +1595,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699630075" lon="11.975831470">
   <ele>77.762215</ele>
 <time>2008-01-27T14:27:59Z</time>
+  <course>146.587997</course>
+  <speed>1.302800</speed>
   <name>TP0174</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1220,6 +1604,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699587474" lon="11.975906304">
   <ele>82.254944</ele>
 <time>2008-01-27T14:28:04Z</time>
+  <course>146.587997</course>
+  <speed>1.213632</speed>
   <name>TP0175</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1227,6 +1613,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699522853" lon="11.975944915">
   <ele>86.902519</ele>
 <time>2008-01-27T14:28:09Z</time>
+  <course>146.587997</course>
+  <speed>1.156784</speed>
   <name>TP0176</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1234,6 +1622,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699489087" lon="11.976030325">
   <ele>91.039124</ele>
 <time>2008-01-27T14:28:14Z</time>
+  <course>146.587997</course>
+  <speed>0.765005</speed>
   <name>TP0177</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1241,6 +1631,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699445057" lon="11.976073458">
   <ele>95.986641</ele>
 <time>2008-01-27T14:28:19Z</time>
+  <course>146.587997</course>
+  <speed>1.417850</speed>
   <name>TP0178</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1248,6 +1640,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699388989" lon="11.976111811">
   <ele>101.368256</ele>
 <time>2008-01-27T14:28:24Z</time>
+  <course>146.587997</course>
+  <speed>1.227613</speed>
   <name>TP0179</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1255,6 +1649,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699328949" lon="11.976171280">
   <ele>108.444229</ele>
 <time>2008-01-27T14:28:29Z</time>
+  <course>148.233871</course>
+  <speed>1.070183</speed>
   <name>TP0180</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1262,6 +1658,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699293504" lon="11.976243593">
   <ele>112.981300</ele>
 <time>2008-01-27T14:28:34Z</time>
+  <course>148.233871</course>
+  <speed>0.820349</speed>
   <name>TP0181</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1269,6 +1667,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699263741" lon="11.976337310">
   <ele>119.031311</ele>
 <time>2008-01-27T14:28:39Z</time>
+  <course>150.412949</course>
+  <speed>0.733967</speed>
   <name>TP0182</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1276,6 +1676,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699210161" lon="11.976447031">
   <ele>124.015923</ele>
 <time>2008-01-27T14:28:44Z</time>
+  <course>150.412949</course>
+  <speed>0.964730</speed>
   <name>TP0183</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1283,6 +1685,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699173256" lon="11.976572500">
   <ele>128.919205</ele>
 <time>2008-01-27T14:28:49Z</time>
+  <course>149.867859</course>
+  <speed>1.578155</speed>
   <name>TP0184</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1290,6 +1694,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699138990" lon="11.976670232">
   <ele>135.981369</ele>
 <time>2008-01-27T14:28:54Z</time>
+  <course>149.867859</course>
+  <speed>0.857911</speed>
   <name>TP0185</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1297,6 +1703,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699092949" lon="11.976752692">
   <ele>142.060516</ele>
 <time>2008-01-27T14:28:59Z</time>
+  <course>152.427673</course>
+  <speed>1.470509</speed>
   <name>TP0186</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1304,6 +1712,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699046121" lon="11.976872896">
   <ele>145.621017</ele>
 <time>2008-01-27T14:29:04Z</time>
+  <course>152.427673</course>
+  <speed>1.155793</speed>
   <name>TP0187</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1311,6 +1721,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698988822" lon="11.976972503">
   <ele>147.339279</ele>
 <time>2008-01-27T14:29:09Z</time>
+  <course>152.427673</course>
+  <speed>1.291424</speed>
   <name>TP0188</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1318,6 +1730,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698959267" lon="11.977001535">
   <ele>147.914948</ele>
 <time>2008-01-27T14:29:14Z</time>
+  <course>152.427673</course>
+  <speed>0.295060</speed>
   <name>TP0189</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1325,6 +1739,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698951927" lon="11.977010782">
   <ele>149.005646</ele>
 <time>2008-01-27T14:29:19Z</time>
+  <course>152.427673</course>
+  <speed>0.184193</speed>
   <name>TP0190</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1332,6 +1748,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698944931" lon="11.977020741">
   <ele>149.274536</ele>
 <time>2008-01-27T14:29:24Z</time>
+  <course>152.427673</course>
+  <speed>0.232211</speed>
   <name>TP0191</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1339,6 +1757,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698937213" lon="11.977025553">
   <ele>149.182236</ele>
 <time>2008-01-27T14:29:29Z</time>
+  <course>152.427673</course>
+  <speed>0.211573</speed>
   <name>TP0192</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1346,6 +1766,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698931196" lon="11.977031012">
   <ele>148.905640</ele>
 <time>2008-01-27T14:29:34Z</time>
+  <course>152.427673</course>
+  <speed>0.075801</speed>
   <name>TP0193</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1353,6 +1775,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698924588" lon="11.977038349">
   <ele>148.809921</ele>
 <time>2008-01-27T14:29:39Z</time>
+  <course>152.427673</course>
+  <speed>1.196584</speed>
   <name>TP0194</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1360,6 +1784,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698785688" lon="11.977052619">
   <ele>135.016083</ele>
 <time>2008-01-27T14:29:44Z</time>
+  <course>152.427673</course>
+  <speed>0.852625</speed>
   <name>TP0195</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1367,6 +1793,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698688344" lon="11.977180267">
   <ele>127.506874</ele>
 <time>2008-01-27T14:29:49Z</time>
+  <course>151.834854</course>
+  <speed>0.630221</speed>
   <name>TP0196</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1374,6 +1802,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698672360" lon="11.977272663">
   <ele>125.575233</ele>
 <time>2008-01-27T14:29:54Z</time>
+  <course>151.834854</course>
+  <speed>1.000494</speed>
   <name>TP0197</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1381,6 +1811,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698642222" lon="11.977301992">
   <ele>124.096199</ele>
 <time>2008-01-27T14:29:59Z</time>
+  <course>151.834854</course>
+  <speed>0.736805</speed>
   <name>TP0198</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1388,6 +1820,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698615170" lon="11.977346211">
   <ele>125.293076</ele>
 <time>2008-01-27T14:30:04Z</time>
+  <course>151.834854</course>
+  <speed>1.544690</speed>
   <name>TP0199</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1395,6 +1829,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698578743" lon="11.977430343">
   <ele>126.160484</ele>
 <time>2008-01-27T14:30:09Z</time>
+  <course>151.834854</course>
+  <speed>1.657514</speed>
   <name>TP0200</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1402,6 +1838,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698530989" lon="11.977505932">
   <ele>126.888947</ele>
 <time>2008-01-27T14:30:14Z</time>
+  <course>151.834854</course>
+  <speed>1.238977</speed>
   <name>TP0201</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1409,6 +1847,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698480794" lon="11.977542398">
   <ele>127.783066</ele>
 <time>2008-01-27T14:30:19Z</time>
+  <course>151.834854</course>
+  <speed>1.162266</speed>
   <name>TP0202</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1416,6 +1856,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698439060" lon="11.977616986">
   <ele>127.161171</ele>
 <time>2008-01-27T14:30:24Z</time>
+  <course>151.834854</course>
+  <speed>0.525801</speed>
   <name>TP0203</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1423,6 +1865,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698406234" lon="11.977693155">
   <ele>127.212303</ele>
 <time>2008-01-27T14:30:29Z</time>
+  <course>151.709610</course>
+  <speed>0.841543</speed>
   <name>TP0204</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1430,6 +1874,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698368525" lon="11.977842391">
   <ele>122.669693</ele>
 <time>2008-01-27T14:30:34Z</time>
+  <course>150.292557</course>
+  <speed>1.061839</speed>
   <name>TP0205</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1437,6 +1883,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698331535" lon="11.977958914">
   <ele>119.508095</ele>
 <time>2008-01-27T14:30:39Z</time>
+  <course>150.292557</course>
+  <speed>1.193486</speed>
   <name>TP0206</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1444,6 +1892,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698290589" lon="11.978064542">
   <ele>118.256752</ele>
 <time>2008-01-27T14:30:44Z</time>
+  <course>152.138992</course>
+  <speed>0.891211</speed>
   <name>TP0207</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1451,6 +1901,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698250554" lon="11.978478056">
   <ele>114.822960</ele>
 <time>2008-01-27T14:30:49Z</time>
+  <course>152.138992</course>
+  <speed>1.624389</speed>
   <name>TP0208</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1458,6 +1910,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698180437" lon="11.978643601">
   <ele>109.670013</ele>
 <time>2008-01-27T14:30:54Z</time>
+  <course>152.138992</course>
+  <speed>1.206295</speed>
   <name>TP0209</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1465,6 +1919,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698128641" lon="11.978756941">
   <ele>105.505707</ele>
 <time>2008-01-27T14:30:59Z</time>
+  <course>151.187805</course>
+  <speed>1.535839</speed>
   <name>TP0210</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1472,6 +1928,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698061097" lon="11.978835139">
   <ele>103.665871</ele>
 <time>2008-01-27T14:31:04Z</time>
+  <course>149.160706</course>
+  <speed>1.349027</speed>
   <name>TP0211</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1479,6 +1937,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697994645" lon="11.978816482">
   <ele>105.252121</ele>
 <time>2008-01-27T14:31:09Z</time>
+  <course>147.681824</course>
+  <speed>1.299929</speed>
   <name>TP0212</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1486,6 +1946,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697932789" lon="11.978761567">
   <ele>106.092033</ele>
 <time>2008-01-27T14:31:14Z</time>
+  <course>147.681824</course>
+  <speed>1.171165</speed>
   <name>TP0213</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1493,6 +1955,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697841563" lon="11.978775556">
   <ele>104.699776</ele>
 <time>2008-01-27T14:31:19Z</time>
+  <course>147.681824</course>
+  <speed>1.726084</speed>
   <name>TP0214</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1500,6 +1964,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697783530" lon="11.978807906">
   <ele>104.697060</ele>
 <time>2008-01-27T14:31:24Z</time>
+  <course>147.681824</course>
+  <speed>1.279907</speed>
   <name>TP0215</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1507,6 +1973,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697712263" lon="11.978872127">
   <ele>106.037743</ele>
 <time>2008-01-27T14:31:29Z</time>
+  <course>144.817627</course>
+  <speed>1.258147</speed>
   <name>TP0216</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -1514,6 +1982,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697683391" lon="11.978893475">
   <ele>103.740364</ele>
 <time>2008-01-27T14:31:34Z</time>
+  <course>143.690689</course>
+  <speed>1.579578</speed>
   <name>TP0217</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1521,6 +1991,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697664652" lon="11.978942526">
   <ele>100.027649</ele>
 <time>2008-01-27T14:31:39Z</time>
+  <course>143.690689</course>
+  <speed>1.073990</speed>
   <name>TP0218</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1528,6 +2000,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697600471" lon="11.979011675">
   <ele>96.331116</ele>
 <time>2008-01-27T14:31:44Z</time>
+  <course>171.598877</course>
+  <speed>1.557547</speed>
   <name>TP0219</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1535,6 +2009,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697474178" lon="11.978968585">
   <ele>89.904938</ele>
 <time>2008-01-27T14:31:49Z</time>
+  <course>175.468765</course>
+  <speed>1.955361</speed>
   <name>TP0220</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -1542,6 +2018,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697367381" lon="11.979000294">
   <ele>84.426712</ele>
 <time>2008-01-27T14:31:54Z</time>
+  <course>175.468765</course>
+  <speed>1.291836</speed>
   <name>TP0221</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1549,6 +2027,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697308048" lon="11.979088374">
   <ele>83.600838</ele>
 <time>2008-01-27T14:31:59Z</time>
+  <course>175.468765</course>
+  <speed>1.551400</speed>
   <name>TP0222</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1556,6 +2036,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697290761" lon="11.979183666">
   <ele>86.592972</ele>
 <time>2008-01-27T14:32:04Z</time>
+  <course>175.468765</course>
+  <speed>1.283579</speed>
   <name>TP0223</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1563,6 +2045,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697274335" lon="11.979309774">
   <ele>89.464699</ele>
 <time>2008-01-27T14:32:09Z</time>
+  <course>175.468765</course>
+  <speed>1.505165</speed>
   <name>TP0224</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1570,6 +2054,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697218815" lon="11.979413353">
   <ele>87.773705</ele>
 <time>2008-01-27T14:32:14Z</time>
+  <course>175.468765</course>
+  <speed>1.161298</speed>
   <name>TP0225</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1577,6 +2063,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697166241" lon="11.979433877">
   <ele>95.692902</ele>
 <time>2008-01-27T14:32:19Z</time>
+  <course>175.468765</course>
+  <speed>1.088356</speed>
   <name>TP0226</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1584,6 +2072,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697098067" lon="11.979491174">
   <ele>92.201309</ele>
 <time>2008-01-27T14:32:24Z</time>
+  <course>175.468765</course>
+  <speed>0.362650</speed>
   <name>TP0227</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1591,6 +2081,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697097600" lon="11.979480647">
   <ele>95.842636</ele>
 <time>2008-01-27T14:32:29Z</time>
+  <course>175.468765</course>
+  <speed>0.377014</speed>
   <name>TP0228</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1598,6 +2090,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697093407" lon="11.979470029">
   <ele>96.420593</ele>
 <time>2008-01-27T14:32:31Z</time>
+  <course>175.468765</course>
+  <speed>0.340517</speed>
   <name>TP0229</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1605,6 +2099,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697089203" lon="11.979459378">
   <ele>97.553391</ele>
 <time>2008-01-27T14:32:36Z</time>
+  <course>175.468765</course>
+  <speed>0.096594</speed>
   <name>TP0230</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1612,6 +2108,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697088223" lon="11.979459323">
   <ele>97.997795</ele>
 <time>2008-01-27T14:32:41Z</time>
+  <course>175.468765</course>
+  <speed>0.206676</speed>
   <name>TP0231</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1619,6 +2117,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697103888" lon="11.979504147">
   <ele>96.477997</ele>
 <time>2008-01-27T14:32:46Z</time>
+  <course>175.468765</course>
+  <speed>1.065818</speed>
   <name>TP0232</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1626,6 +2126,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697152015" lon="11.979573879">
   <ele>89.552612</ele>
 <time>2008-01-27T14:32:51Z</time>
+  <course>175.468765</course>
+  <speed>1.232277</speed>
   <name>TP0233</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1633,6 +2135,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697205060" lon="11.979565464">
   <ele>83.425354</ele>
 <time>2008-01-27T14:32:56Z</time>
+  <course>175.468765</course>
+  <speed>1.217340</speed>
   <name>TP0234</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1640,6 +2144,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697265526" lon="11.979543292">
   <ele>79.042557</ele>
 <time>2008-01-27T14:33:01Z</time>
+  <course>175.468765</course>
+  <speed>1.393529</speed>
   <name>TP0235</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1647,6 +2153,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697335449" lon="11.979516625">
   <ele>75.905380</ele>
 <time>2008-01-27T14:33:06Z</time>
+  <course>175.468765</course>
+  <speed>1.738409</speed>
   <name>TP0236</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1654,6 +2162,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697396194" lon="11.979552749">
   <ele>72.990585</ele>
 <time>2008-01-27T14:33:11Z</time>
+  <course>175.468765</course>
+  <speed>1.682981</speed>
   <name>TP0237</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1661,6 +2171,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697457105" lon="11.979551956">
   <ele>69.762535</ele>
 <time>2008-01-27T14:33:16Z</time>
+  <course>175.468765</course>
+  <speed>1.189377</speed>
   <name>TP0238</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1668,6 +2180,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697529700" lon="11.979501025">
   <ele>64.873619</ele>
 <time>2008-01-27T14:33:21Z</time>
+  <course>175.468765</course>
+  <speed>1.531558</speed>
   <name>TP0239</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1675,6 +2189,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697577206" lon="11.979440395">
   <ele>61.687244</ele>
 <time>2008-01-27T14:33:26Z</time>
+  <course>175.468765</course>
+  <speed>1.349966</speed>
   <name>TP0240</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1682,6 +2198,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697611483" lon="11.979335495">
   <ele>60.878510</ele>
 <time>2008-01-27T14:33:31Z</time>
+  <course>175.468765</course>
+  <speed>1.811747</speed>
   <name>TP0241</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1689,6 +2207,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697650924" lon="11.979255036">
   <ele>60.912205</ele>
 <time>2008-01-27T14:33:36Z</time>
+  <course>175.468765</course>
+  <speed>1.351255</speed>
   <name>TP0242</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1696,6 +2216,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697683410" lon="11.979185396">
   <ele>61.898537</ele>
 <time>2008-01-27T14:33:41Z</time>
+  <course>175.468765</course>
+  <speed>1.227153</speed>
   <name>TP0243</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1703,6 +2225,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697710477" lon="11.979115377">
   <ele>64.165245</ele>
 <time>2008-01-27T14:33:46Z</time>
+  <course>175.468765</course>
+  <speed>1.598597</speed>
   <name>TP0244</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1710,6 +2234,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697734781" lon="11.979055225">
   <ele>68.273476</ele>
 <time>2008-01-27T14:33:51Z</time>
+  <course>175.468765</course>
+  <speed>0.935148</speed>
   <name>TP0245</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1717,6 +2243,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697783259" lon="11.978979021">
   <ele>69.860306</ele>
 <time>2008-01-27T14:33:56Z</time>
+  <course>175.468765</course>
+  <speed>1.053721</speed>
   <name>TP0246</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1724,6 +2252,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697851998" lon="11.978977596">
   <ele>69.197311</ele>
 <time>2008-01-27T14:34:01Z</time>
+  <course>175.468765</course>
+  <speed>0.918024</speed>
   <name>TP0247</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1731,6 +2261,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.697931310" lon="11.978880222">
   <ele>66.017838</ele>
 <time>2008-01-27T14:34:06Z</time>
+  <course>175.468765</course>
+  <speed>1.308921</speed>
   <name>TP0248</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1738,6 +2270,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698014469" lon="11.978795031">
   <ele>63.116501</ele>
 <time>2008-01-27T14:34:11Z</time>
+  <course>175.468765</course>
+  <speed>1.576381</speed>
   <name>TP0249</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1745,6 +2279,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698069479" lon="11.978688396">
   <ele>62.031185</ele>
 <time>2008-01-27T14:34:16Z</time>
+  <course>175.468765</course>
+  <speed>1.214055</speed>
   <name>TP0250</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1752,6 +2288,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698116732" lon="11.978580605">
   <ele>63.191040</ele>
 <time>2008-01-27T14:34:21Z</time>
+  <course>175.468765</course>
+  <speed>1.318986</speed>
   <name>TP0251</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1759,6 +2297,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698160138" lon="11.978480008">
   <ele>63.152187</ele>
 <time>2008-01-27T14:34:26Z</time>
+  <course>175.468765</course>
+  <speed>1.330799</speed>
   <name>TP0252</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1766,6 +2306,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698223581" lon="11.978408333">
   <ele>64.187660</ele>
 <time>2008-01-27T14:34:31Z</time>
+  <course>175.468765</course>
+  <speed>1.029365</speed>
   <name>TP0253</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1773,6 +2315,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698269395" lon="11.978332976">
   <ele>62.522697</ele>
 <time>2008-01-27T14:34:36Z</time>
+  <course>175.468765</course>
+  <speed>1.288271</speed>
   <name>TP0254</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1780,6 +2324,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698343689" lon="11.978199321">
   <ele>59.038860</ele>
 <time>2008-01-27T14:34:41Z</time>
+  <course>175.468765</course>
+  <speed>1.265553</speed>
   <name>TP0255</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1787,6 +2333,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698393910" lon="11.978093275">
   <ele>58.767090</ele>
 <time>2008-01-27T14:34:46Z</time>
+  <course>175.468765</course>
+  <speed>1.409092</speed>
   <name>TP0256</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1794,6 +2342,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698437345" lon="11.978008810">
   <ele>58.772144</ele>
 <time>2008-01-27T14:34:51Z</time>
+  <course>175.468765</course>
+  <speed>1.408163</speed>
   <name>TP0257</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1801,6 +2351,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698484284" lon="11.977918077">
   <ele>59.631092</ele>
 <time>2008-01-27T14:34:56Z</time>
+  <course>175.468765</course>
+  <speed>1.528380</speed>
   <name>TP0258</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1808,6 +2360,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698542462" lon="11.977854872">
   <ele>59.825020</ele>
 <time>2008-01-27T14:35:01Z</time>
+  <course>175.468765</course>
+  <speed>1.146875</speed>
   <name>TP0259</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1815,6 +2369,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698615593" lon="11.977817548">
   <ele>59.702190</ele>
 <time>2008-01-27T14:35:06Z</time>
+  <course>175.468765</course>
+  <speed>1.329110</speed>
   <name>TP0260</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1822,6 +2378,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698662980" lon="11.977687275">
   <ele>57.374817</ele>
 <time>2008-01-27T14:35:11Z</time>
+  <course>175.468765</course>
+  <speed>0.666853</speed>
   <name>TP0261</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1829,6 +2387,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698659976" lon="11.977695536">
   <ele>57.712070</ele>
 <time>2008-01-27T14:35:16Z</time>
+  <course>175.468765</course>
+  <speed>0.034337</speed>
   <name>TP0262</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1836,6 +2396,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698659709" lon="11.977696191">
   <ele>57.753304</ele>
 <time>2008-01-27T14:35:21Z</time>
+  <course>175.468765</course>
+  <speed>0.007648</speed>
   <name>TP0263</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1843,6 +2405,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698659626" lon="11.977696659">
   <ele>57.740093</ele>
 <time>2008-01-27T14:35:26Z</time>
+  <course>175.468765</course>
+  <speed>0.008052</speed>
   <name>TP0264</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1850,6 +2414,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698666420" lon="11.977689514">
   <ele>57.764366</ele>
 <time>2008-01-27T14:35:31Z</time>
+  <course>175.468765</course>
+  <speed>1.399782</speed>
   <name>TP0265</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1857,6 +2423,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698734299" lon="11.977586736">
   <ele>56.159416</ele>
 <time>2008-01-27T14:35:36Z</time>
+  <course>175.468765</course>
+  <speed>1.870218</speed>
   <name>TP0266</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1864,6 +2432,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698814822" lon="11.977506458">
   <ele>51.599651</ele>
 <time>2008-01-27T14:35:41Z</time>
+  <course>175.468765</course>
+  <speed>1.362844</speed>
   <name>TP0267</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1871,6 +2441,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698893266" lon="11.977435207">
   <ele>50.687393</ele>
 <time>2008-01-27T14:35:46Z</time>
+  <course>175.468765</course>
+  <speed>1.824428</speed>
   <name>TP0268</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1878,6 +2450,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.698959722" lon="11.977356103">
   <ele>51.726231</ele>
 <time>2008-01-27T14:35:51Z</time>
+  <course>175.468765</course>
+  <speed>1.349397</speed>
   <name>TP0269</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1885,6 +2459,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699003516" lon="11.977275097">
   <ele>53.611576</ele>
 <time>2008-01-27T14:35:56Z</time>
+  <course>175.468765</course>
+  <speed>1.531711</speed>
   <name>TP0270</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1892,6 +2468,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699042955" lon="11.977179276">
   <ele>54.669785</ele>
 <time>2008-01-27T14:36:01Z</time>
+  <course>175.468765</course>
+  <speed>1.658979</speed>
   <name>TP0271</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1899,6 +2477,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699088102" lon="11.977113951">
   <ele>56.635204</ele>
 <time>2008-01-27T14:36:06Z</time>
+  <course>175.468765</course>
+  <speed>1.808275</speed>
   <name>TP0272</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1906,6 +2486,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699134709" lon="11.977033398">
   <ele>59.525986</ele>
 <time>2008-01-27T14:36:11Z</time>
+  <course>175.468765</course>
+  <speed>1.080695</speed>
   <name>TP0273</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1913,6 +2495,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699139590" lon="11.976914650">
   <ele>61.831104</ele>
 <time>2008-01-27T14:36:16Z</time>
+  <course>175.468765</course>
+  <speed>1.497532</speed>
   <name>TP0274</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1920,6 +2504,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699182903" lon="11.976799455">
   <ele>63.125233</ele>
 <time>2008-01-27T14:36:21Z</time>
+  <course>175.468765</course>
+  <speed>0.938251</speed>
   <name>TP0275</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1927,6 +2513,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699237930" lon="11.976727861">
   <ele>65.140114</ele>
 <time>2008-01-27T14:36:26Z</time>
+  <course>175.468765</course>
+  <speed>1.955553</speed>
   <name>TP0276</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1934,6 +2522,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699323052" lon="11.976678988">
   <ele>63.122700</ele>
 <time>2008-01-27T14:36:31Z</time>
+  <course>175.468765</course>
+  <speed>0.980393</speed>
   <name>TP0277</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1941,6 +2531,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699357256" lon="11.976650031">
   <ele>63.094830</ele>
 <time>2008-01-27T14:36:36Z</time>
+  <course>175.468765</course>
+  <speed>0.562485</speed>
   <name>TP0278</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1948,6 +2540,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699360940" lon="11.976686135">
   <ele>64.548813</ele>
 <time>2008-01-27T14:36:41Z</time>
+  <course>175.468765</course>
+  <speed>0.210463</speed>
   <name>TP0279</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1955,6 +2549,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699356927" lon="11.976695524">
   <ele>65.330444</ele>
 <time>2008-01-27T14:36:46Z</time>
+  <course>175.468765</course>
+  <speed>0.091049</speed>
   <name>TP0280</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -1962,6 +2558,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699353111" lon="11.976715026">
   <ele>65.650665</ele>
 <time>2008-01-27T14:36:51Z</time>
+  <course>175.468765</course>
+  <speed>0.703038</speed>
   <name>TP0281</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1969,6 +2567,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699354243" lon="11.976776929">
   <ele>65.962677</ele>
 <time>2008-01-27T14:36:56Z</time>
+  <course>175.468765</course>
+  <speed>0.581965</speed>
   <name>TP0282</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1976,6 +2576,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699353150" lon="11.976816863">
   <ele>66.271774</ele>
 <time>2008-01-27T14:37:01Z</time>
+  <course>175.468765</course>
+  <speed>0.555606</speed>
   <name>TP0283</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1983,6 +2585,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699338601" lon="11.976851630">
   <ele>66.537361</ele>
 <time>2008-01-27T14:37:06Z</time>
+  <course>175.468765</course>
+  <speed>0.640316</speed>
   <name>TP0284</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1990,6 +2594,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699336455" lon="11.976895312">
   <ele>66.843864</ele>
 <time>2008-01-27T14:37:11Z</time>
+  <course>175.468765</course>
+  <speed>0.203543</speed>
   <name>TP0285</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -1997,6 +2603,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699335906" lon="11.976902403">
   <ele>66.999008</ele>
 <time>2008-01-27T14:37:16Z</time>
+  <course>175.468765</course>
+  <speed>0.052765</speed>
   <name>TP0286</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2004,6 +2612,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699337137" lon="11.976902951">
   <ele>67.045273</ele>
 <time>2008-01-27T14:37:21Z</time>
+  <course>175.468765</course>
+  <speed>0.103190</speed>
   <name>TP0287</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2011,6 +2621,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699342706" lon="11.976884233">
   <ele>67.063019</ele>
 <time>2008-01-27T14:37:26Z</time>
+  <course>175.468765</course>
+  <speed>0.446828</speed>
   <name>TP0288</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2018,6 +2630,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699353236" lon="11.976850448">
   <ele>67.085609</ele>
 <time>2008-01-27T14:37:31Z</time>
+  <course>175.468765</course>
+  <speed>0.461187</speed>
   <name>TP0289</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2025,6 +2639,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699358544" lon="11.976832802">
   <ele>67.109024</ele>
 <time>2008-01-27T14:37:36Z</time>
+  <course>175.468765</course>
+  <speed>0.192227</speed>
   <name>TP0290</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2032,6 +2648,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699363988" lon="11.976816076">
   <ele>67.115768</ele>
 <time>2008-01-27T14:37:41Z</time>
+  <course>175.468765</course>
+  <speed>0.138321</speed>
   <name>TP0291</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2039,6 +2657,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699367088" lon="11.976810946">
   <ele>67.122627</ele>
 <time>2008-01-27T14:37:46Z</time>
+  <course>175.468765</course>
+  <speed>0.126840</speed>
   <name>TP0292</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2046,6 +2666,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699375503" lon="11.976791240">
   <ele>67.126030</ele>
 <time>2008-01-27T14:37:51Z</time>
+  <course>175.468765</course>
+  <speed>0.526896</speed>
   <name>TP0293</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2053,6 +2675,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699403780" lon="11.976772607">
   <ele>67.145798</ele>
 <time>2008-01-27T14:37:56Z</time>
+  <course>175.468765</course>
+  <speed>0.868801</speed>
   <name>TP0294</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2060,6 +2684,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699441321" lon="11.976756819">
   <ele>67.190155</ele>
 <time>2008-01-27T14:38:01Z</time>
+  <course>175.468765</course>
+  <speed>0.743607</speed>
   <name>TP0295</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2067,6 +2693,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699469744" lon="11.976756271">
   <ele>67.274750</ele>
 <time>2008-01-27T14:38:06Z</time>
+  <course>175.468765</course>
+  <speed>0.594341</speed>
   <name>TP0296</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -2074,6 +2702,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699495975" lon="11.976755207">
   <ele>67.238174</ele>
 <time>2008-01-27T14:38:11Z</time>
+  <course>175.468765</course>
+  <speed>0.597670</speed>
   <name>TP0297</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -2081,6 +2711,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699523223" lon="11.976774770">
   <ele>67.196770</ele>
 <time>2008-01-27T14:38:16Z</time>
+  <course>175.468765</course>
+  <speed>0.635388</speed>
   <name>TP0298</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -2088,6 +2720,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699553760" lon="11.976779780">
   <ele>67.123039</ele>
 <time>2008-01-27T14:38:21Z</time>
+  <course>175.468765</course>
+  <speed>0.721896</speed>
   <name>TP0299</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2095,6 +2729,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699578854" lon="11.976772597">
   <ele>67.029480</ele>
 <time>2008-01-27T14:38:26Z</time>
+  <course>175.468765</course>
+  <speed>0.509246</speed>
   <name>TP0300</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -2102,6 +2738,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699588424" lon="11.976763894">
   <ele>66.982285</ele>
 <time>2008-01-27T14:38:31Z</time>
+  <course>175.468765</course>
+  <speed>0.084961</speed>
   <name>TP0301</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -2109,6 +2747,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699594272" lon="11.976794546">
   <ele>66.994843</ele>
 <time>2008-01-27T14:38:36Z</time>
+  <course>175.468765</course>
+  <speed>0.467561</speed>
   <name>TP0302</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -2116,6 +2756,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699594459" lon="11.976795947">
   <ele>67.050613</ele>
 <time>2008-01-27T14:38:41Z</time>
+  <course>175.468765</course>
+  <speed>0.171006</speed>
   <name>TP0303</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2123,6 +2765,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699593589" lon="11.976799676">
   <ele>67.175125</ele>
 <time>2008-01-27T14:38:46Z</time>
+  <course>175.468765</course>
+  <speed>0.259222</speed>
   <name>TP0304</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2130,6 +2774,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699595710" lon="11.976813631">
   <ele>67.189331</ele>
 <time>2008-01-27T14:38:51Z</time>
+  <course>175.468765</course>
+  <speed>0.163483</speed>
   <name>TP0305</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2137,6 +2783,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699575810" lon="11.976767065">
   <ele>67.107552</ele>
 <time>2008-01-27T14:38:56Z</time>
+  <course>175.468765</course>
+  <speed>0.943069</speed>
   <name>TP0306</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2144,6 +2792,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699566034" lon="11.976758894">
   <ele>67.007812</ele>
 <time>2008-01-27T14:39:01Z</time>
+  <course>175.468765</course>
+  <speed>0.276720</speed>
   <name>TP0307</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2151,6 +2801,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699569668" lon="11.976760085">
   <ele>66.901794</ele>
 <time>2008-01-27T14:39:06Z</time>
+  <course>175.468765</course>
+  <speed>0.131728</speed>
   <name>TP0308</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -2158,6 +2810,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699572789" lon="11.976756697">
   <ele>66.823387</ele>
 <time>2008-01-27T14:39:11Z</time>
+  <course>175.468765</course>
+  <speed>0.441979</speed>
   <name>TP0309</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2165,6 +2819,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699565541" lon="11.976722054">
   <ele>66.704353</ele>
 <time>2008-01-27T14:39:16Z</time>
+  <course>175.468765</course>
+  <speed>0.559136</speed>
   <name>TP0310</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2172,6 +2828,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699555816" lon="11.976690550">
   <ele>66.499146</ele>
 <time>2008-01-27T14:39:21Z</time>
+  <course>175.468765</course>
+  <speed>0.881640</speed>
   <name>TP0311</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2179,6 +2837,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699555786" lon="11.976630906">
   <ele>66.373116</ele>
 <time>2008-01-27T14:39:26Z</time>
+  <course>175.468765</course>
+  <speed>1.139266</speed>
   <name>TP0312</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2186,6 +2846,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699554338" lon="11.976522706">
   <ele>62.448307</ele>
 <time>2008-01-27T14:39:31Z</time>
+  <course>175.468765</course>
+  <speed>1.584432</speed>
   <name>TP0313</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2193,6 +2855,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699557343" lon="11.976458559">
   <ele>63.711189</ele>
 <time>2008-01-27T14:39:36Z</time>
+  <course>175.468765</course>
+  <speed>0.537779</speed>
   <name>TP0314</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2200,6 +2864,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699588714" lon="11.976400600">
   <ele>65.081207</ele>
 <time>2008-01-27T14:39:41Z</time>
+  <course>175.468765</course>
+  <speed>1.460763</speed>
   <name>TP0315</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2207,6 +2873,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699617726" lon="11.976313366">
   <ele>65.331810</ele>
 <time>2008-01-27T14:39:46Z</time>
+  <course>175.468765</course>
+  <speed>0.471566</speed>
   <name>TP0316</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2214,6 +2882,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699658406" lon="11.976248375">
   <ele>65.433136</ele>
 <time>2008-01-27T14:39:51Z</time>
+  <course>175.468765</course>
+  <speed>1.028151</speed>
   <name>TP0317</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2221,6 +2891,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699712957" lon="11.976240572">
   <ele>68.669930</ele>
 <time>2008-01-27T14:39:56Z</time>
+  <course>175.468765</course>
+  <speed>1.090684</speed>
   <name>TP0318</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2228,6 +2900,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699776426" lon="11.976176622">
   <ele>67.727882</ele>
 <time>2008-01-27T14:40:01Z</time>
+  <course>175.468765</course>
+  <speed>1.121583</speed>
   <name>TP0319</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2235,6 +2909,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699825113" lon="11.976082324">
   <ele>67.210159</ele>
 <time>2008-01-27T14:40:06Z</time>
+  <course>175.468765</course>
+  <speed>1.221953</speed>
   <name>TP0320</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2242,6 +2918,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699889840" lon="11.975990528">
   <ele>67.460991</ele>
 <time>2008-01-27T14:40:11Z</time>
+  <course>175.468765</course>
+  <speed>1.380647</speed>
   <name>TP0321</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2249,6 +2927,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699932777" lon="11.975902191">
   <ele>67.406555</ele>
 <time>2008-01-27T14:40:16Z</time>
+  <course>175.468765</course>
+  <speed>1.339889</speed>
   <name>TP0322</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2256,6 +2936,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699981799" lon="11.975812877">
   <ele>67.934387</ele>
 <time>2008-01-27T14:40:21Z</time>
+  <course>175.468765</course>
+  <speed>1.000727</speed>
   <name>TP0323</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2263,6 +2945,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700013347" lon="11.975730024">
   <ele>68.325150</ele>
 <time>2008-01-27T14:40:26Z</time>
+  <course>175.468765</course>
+  <speed>1.120354</speed>
   <name>TP0324</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2270,6 +2954,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700050590" lon="11.975639119">
   <ele>68.265938</ele>
 <time>2008-01-27T14:40:31Z</time>
+  <course>175.468765</course>
+  <speed>1.248476</speed>
   <name>TP0325</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2277,6 +2963,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700111120" lon="11.975515145">
   <ele>66.727936</ele>
 <time>2008-01-27T14:40:36Z</time>
+  <course>312.802246</course>
+  <speed>2.078804</speed>
   <name>TP0326</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2284,6 +2972,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700148250" lon="11.975412067">
   <ele>66.767967</ele>
 <time>2008-01-27T14:40:41Z</time>
+  <course>312.802246</course>
+  <speed>1.515785</speed>
   <name>TP0327</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2291,6 +2981,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700209443" lon="11.975290447">
   <ele>64.711159</ele>
 <time>2008-01-27T14:40:46Z</time>
+  <course>313.321777</course>
+  <speed>1.331840</speed>
   <name>TP0328</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2298,6 +2990,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700288350" lon="11.975163260">
   <ele>59.310825</ele>
 <time>2008-01-27T14:40:51Z</time>
+  <course>308.333649</course>
+  <speed>1.644789</speed>
   <name>TP0329</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2305,6 +2999,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700373120" lon="11.975093425">
   <ele>55.797432</ele>
 <time>2008-01-27T14:40:56Z</time>
+  <course>308.333649</course>
+  <speed>1.578672</speed>
   <name>TP0330</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2312,6 +3008,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700438259" lon="11.975011198">
   <ele>53.861481</ele>
 <time>2008-01-27T14:41:01Z</time>
+  <course>308.333649</course>
+  <speed>1.274700</speed>
   <name>TP0331</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2319,6 +3017,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700496737" lon="11.974938388">
   <ele>53.175739</ele>
 <time>2008-01-27T14:41:06Z</time>
+  <course>308.138123</course>
+  <speed>1.346282</speed>
   <name>TP0332</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2326,6 +3026,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700559212" lon="11.974854201">
   <ele>52.071518</ele>
 <time>2008-01-27T14:41:11Z</time>
+  <course>308.138123</course>
+  <speed>1.086786</speed>
   <name>TP0333</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2333,6 +3035,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700677040" lon="11.974866246">
   <ele>48.707954</ele>
 <time>2008-01-27T14:41:16Z</time>
+  <course>308.138123</course>
+  <speed>1.628884</speed>
   <name>TP0334</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2340,6 +3044,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700746074" lon="11.974814115">
   <ele>46.551117</ele>
 <time>2008-01-27T14:41:21Z</time>
+  <course>308.138123</course>
+  <speed>1.271425</speed>
   <name>TP0335</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2347,6 +3053,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700808240" lon="11.974717378">
   <ele>45.544510</ele>
 <time>2008-01-27T14:41:26Z</time>
+  <course>308.138123</course>
+  <speed>1.525444</speed>
   <name>TP0336</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2354,6 +3062,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700869523" lon="11.974635891">
   <ele>44.028717</ele>
 <time>2008-01-27T14:41:31Z</time>
+  <course>307.519714</course>
+  <speed>1.813896</speed>
   <name>TP0337</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2361,6 +3071,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700937030" lon="11.974538614">
   <ele>43.179455</ele>
 <time>2008-01-27T14:41:36Z</time>
+  <course>307.519714</course>
+  <speed>1.620501</speed>
   <name>TP0338</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2368,6 +3080,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700975767" lon="11.974505376">
   <ele>44.183289</ele>
 <time>2008-01-27T14:41:41Z</time>
+  <course>307.519714</course>
+  <speed>1.121122</speed>
   <name>TP0339</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2375,6 +3089,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701023667" lon="11.974408623">
   <ele>44.197002</ele>
 <time>2008-01-27T14:41:46Z</time>
+  <course>307.519714</course>
+  <speed>1.351534</speed>
   <name>TP0340</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2382,6 +3098,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701062417" lon="11.974338713">
   <ele>44.851364</ele>
 <time>2008-01-27T14:41:51Z</time>
+  <course>309.039703</course>
+  <speed>0.850725</speed>
   <name>TP0341</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2389,6 +3107,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701102836" lon="11.974260171">
   <ele>46.545170</ele>
 <time>2008-01-27T14:41:56Z</time>
+  <course>312.476257</course>
+  <speed>0.958556</speed>
   <name>TP0342</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2396,6 +3116,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701145407" lon="11.974183931">
   <ele>48.676037</ele>
 <time>2008-01-27T14:42:01Z</time>
+  <course>312.476257</course>
+  <speed>1.167243</speed>
   <name>TP0343</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2403,6 +3125,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701185230" lon="11.974109388">
   <ele>51.464268</ele>
 <time>2008-01-27T14:42:06Z</time>
+  <course>313.447083</course>
+  <speed>1.254220</speed>
   <name>TP0344</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2410,6 +3134,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701257014" lon="11.974060320">
   <ele>52.665562</ele>
 <time>2008-01-27T14:42:11Z</time>
+  <course>313.648682</course>
+  <speed>1.048820</speed>
   <name>TP0345</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2417,6 +3143,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701289299" lon="11.973956467">
   <ele>54.015507</ele>
 <time>2008-01-27T14:42:16Z</time>
+  <course>313.648682</course>
+  <speed>1.486100</speed>
   <name>TP0346</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2424,6 +3152,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701320403" lon="11.973851309">
   <ele>55.014637</ele>
 <time>2008-01-27T14:42:21Z</time>
+  <course>313.648682</course>
+  <speed>1.225496</speed>
   <name>TP0347</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2431,6 +3161,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701396004" lon="11.973794493">
   <ele>55.862492</ele>
 <time>2008-01-27T14:42:26Z</time>
+  <course>313.648682</course>
+  <speed>1.440006</speed>
   <name>TP0348</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2438,6 +3170,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701411099" lon="11.973701916">
   <ele>59.842957</ele>
 <time>2008-01-27T14:42:31Z</time>
+  <course>315.012482</course>
+  <speed>1.003200</speed>
   <name>TP0349</name>
   <fix>3d</fix>
   <sat>10</sat>
@@ -2445,6 +3179,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701434889" lon="11.973616650">
   <ele>62.616528</ele>
 <time>2008-01-27T14:42:36Z</time>
+  <course>315.592804</course>
+  <speed>1.093873</speed>
   <name>TP0350</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2452,6 +3188,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701443875" lon="11.973507195">
   <ele>65.984482</ele>
 <time>2008-01-27T14:42:41Z</time>
+  <course>315.939636</course>
+  <speed>1.132645</speed>
   <name>TP0351</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2459,6 +3197,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701459713" lon="11.973434155">
   <ele>68.956490</ele>
 <time>2008-01-27T14:42:46Z</time>
+  <course>315.939636</course>
+  <speed>1.362898</speed>
   <name>TP0352</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2466,6 +3206,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701617441" lon="11.973517449">
   <ele>64.422302</ele>
 <time>2008-01-27T14:42:51Z</time>
+  <course>319.429626</course>
+  <speed>1.168481</speed>
   <name>TP0353</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2473,6 +3215,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701706355" lon="11.973372195">
   <ele>57.506542</ele>
 <time>2008-01-27T14:42:56Z</time>
+  <course>319.429626</course>
+  <speed>1.093485</speed>
   <name>TP0354</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2480,6 +3224,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701753350" lon="11.973225693">
   <ele>53.629463</ele>
 <time>2008-01-27T14:43:01Z</time>
+  <course>319.429626</course>
+  <speed>1.666819</speed>
   <name>TP0355</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2487,6 +3233,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701804183" lon="11.973083845">
   <ele>51.207535</ele>
 <time>2008-01-27T14:43:06Z</time>
+  <course>319.429626</course>
+  <speed>1.139789</speed>
   <name>TP0356</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2494,6 +3242,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701857533" lon="11.972972439">
   <ele>50.054111</ele>
 <time>2008-01-27T14:43:11Z</time>
+  <course>319.604919</course>
+  <speed>1.219204</speed>
   <name>TP0357</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2501,6 +3251,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701901987" lon="11.972924949">
   <ele>51.180580</ele>
 <time>2008-01-27T14:43:16Z</time>
+  <course>319.773590</course>
+  <speed>1.200754</speed>
   <name>TP0358</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2508,6 +3260,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701973830" lon="11.972839822">
   <ele>50.299816</ele>
 <time>2008-01-27T14:43:21Z</time>
+  <course>319.422302</course>
+  <speed>1.659349</speed>
   <name>TP0359</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2515,6 +3269,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702049028" lon="11.972743604">
   <ele>47.162354</ele>
 <time>2008-01-27T14:43:26Z</time>
+  <course>319.306824</course>
+  <speed>1.243625</speed>
   <name>TP0360</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2522,6 +3278,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702130183" lon="11.972675066">
   <ele>43.651794</ele>
 <time>2008-01-27T14:43:31Z</time>
+  <course>318.747681</course>
+  <speed>1.517840</speed>
   <name>TP0361</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2529,6 +3287,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702182571" lon="11.972621793">
   <ele>41.516739</ele>
 <time>2008-01-27T14:43:36Z</time>
+  <course>321.181732</course>
+  <speed>1.798075</speed>
   <name>TP0362</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2536,6 +3296,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702256949" lon="11.972537899">
   <ele>42.297428</ele>
 <time>2008-01-27T14:43:41Z</time>
+  <course>321.181732</course>
+  <speed>1.856496</speed>
   <name>TP0363</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2543,6 +3305,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702324992" lon="11.972444765">
   <ele>41.169773</ele>
 <time>2008-01-27T14:43:46Z</time>
+  <course>330.178528</course>
+  <speed>1.447083</speed>
   <name>TP0364</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2550,6 +3314,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702382531" lon="11.972354438">
   <ele>40.141083</ele>
 <time>2008-01-27T14:43:51Z</time>
+  <course>330.178528</course>
+  <speed>0.896336</speed>
   <name>TP0365</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2557,6 +3323,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702412180" lon="11.972289031">
   <ele>41.489315</ele>
 <time>2008-01-27T14:43:56Z</time>
+  <course>331.304474</course>
+  <speed>1.176047</speed>
   <name>TP0366</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2564,6 +3332,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702437956" lon="11.972275231">
   <ele>41.591541</ele>
 <time>2008-01-27T14:44:01Z</time>
+  <course>331.304474</course>
+  <speed>0.078315</speed>
   <name>TP0367</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2571,6 +3341,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702440291" lon="11.972272868">
   <ele>41.805412</ele>
 <time>2008-01-27T14:44:06Z</time>
+  <course>331.304474</course>
+  <speed>0.136545</speed>
   <name>TP0368</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2578,6 +3350,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702440766" lon="11.972272494">
   <ele>41.838428</ele>
 <time>2008-01-27T14:44:11Z</time>
+  <course>331.304474</course>
+  <speed>0.025752</speed>
   <name>TP0369</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2585,6 +3359,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702453971" lon="11.972234419">
   <ele>41.977230</ele>
 <time>2008-01-27T14:44:16Z</time>
+  <course>331.304474</course>
+  <speed>1.645710</speed>
   <name>TP0370</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2592,6 +3368,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702499710" lon="11.972135178">
   <ele>39.424427</ele>
 <time>2008-01-27T14:44:21Z</time>
+  <course>331.304474</course>
+  <speed>1.585729</speed>
   <name>TP0371</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2599,6 +3377,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702561943" lon="11.972115533">
   <ele>39.248688</ele>
 <time>2008-01-27T14:44:26Z</time>
+  <course>331.304474</course>
+  <speed>1.673960</speed>
   <name>TP0372</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2606,6 +3386,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702615537" lon="11.972059751">
   <ele>40.105923</ele>
 <time>2008-01-27T14:44:31Z</time>
+  <course>331.304474</course>
+  <speed>1.675777</speed>
   <name>TP0373</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2613,6 +3395,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702665985" lon="11.972001254">
   <ele>40.622498</ele>
 <time>2008-01-27T14:44:36Z</time>
+  <course>332.742340</course>
+  <speed>1.290782</speed>
   <name>TP0374</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2620,6 +3404,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702735687" lon="11.971930449">
   <ele>39.549179</ele>
 <time>2008-01-27T14:44:41Z</time>
+  <course>334.134705</course>
+  <speed>1.214838</speed>
   <name>TP0375</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2627,6 +3413,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702781795" lon="11.971834852">
   <ele>39.688271</ele>
 <time>2008-01-27T14:44:46Z</time>
+  <course>334.134705</course>
+  <speed>1.341584</speed>
   <name>TP0376</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2634,6 +3422,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702843395" lon="11.971721872">
   <ele>36.874863</ele>
 <time>2008-01-27T14:44:51Z</time>
+  <course>334.134705</course>
+  <speed>1.492571</speed>
   <name>TP0377</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2641,6 +3431,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702910251" lon="11.971636250">
   <ele>37.305058</ele>
 <time>2008-01-27T14:44:56Z</time>
+  <course>329.513885</course>
+  <speed>1.965910</speed>
   <name>TP0378</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2648,6 +3440,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702969668" lon="11.971550884">
   <ele>36.478157</ele>
 <time>2008-01-27T14:45:01Z</time>
+  <course>329.513885</course>
+  <speed>1.425542</speed>
   <name>TP0379</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2655,6 +3449,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703016551" lon="11.971462134">
   <ele>37.679001</ele>
 <time>2008-01-27T14:45:06Z</time>
+  <course>329.513885</course>
+  <speed>1.851270</speed>
   <name>TP0380</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2662,6 +3458,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703071141" lon="11.971374125">
   <ele>37.855843</ele>
 <time>2008-01-27T14:45:11Z</time>
+  <course>329.513885</course>
+  <speed>1.464016</speed>
   <name>TP0381</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2669,6 +3467,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703133970" lon="11.971306767">
   <ele>38.440704</ele>
 <time>2008-01-27T14:45:16Z</time>
+  <course>330.639191</course>
+  <speed>1.963235</speed>
   <name>TP0382</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2676,6 +3476,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703188017" lon="11.971224229">
   <ele>37.094051</ele>
 <time>2008-01-27T14:45:21Z</time>
+  <course>322.645264</course>
+  <speed>1.353058</speed>
   <name>TP0383</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2683,6 +3485,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703243528" lon="11.971134750">
   <ele>38.460693</ele>
 <time>2008-01-27T14:45:26Z</time>
+  <course>321.540863</course>
+  <speed>1.666589</speed>
   <name>TP0384</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2690,6 +3494,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703298423" lon="11.971047352">
   <ele>37.066402</ele>
 <time>2008-01-27T14:45:31Z</time>
+  <course>321.540863</course>
+  <speed>1.353564</speed>
   <name>TP0385</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2697,6 +3503,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703351396" lon="11.970981304">
   <ele>37.422005</ele>
 <time>2008-01-27T14:45:36Z</time>
+  <course>321.540863</course>
+  <speed>1.745178</speed>
   <name>TP0386</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2704,6 +3512,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703404240" lon="11.970899800">
   <ele>36.895084</ele>
 <time>2008-01-27T14:45:41Z</time>
+  <course>320.504150</course>
+  <speed>1.480854</speed>
   <name>TP0387</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2711,6 +3521,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703467367" lon="11.970805750">
   <ele>36.325195</ele>
 <time>2008-01-27T14:45:46Z</time>
+  <course>319.068939</course>
+  <speed>1.389258</speed>
   <name>TP0388</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2718,6 +3530,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703511479" lon="11.970723914">
   <ele>36.249111</ele>
 <time>2008-01-27T14:45:51Z</time>
+  <course>320.075500</course>
+  <speed>1.720982</speed>
   <name>TP0389</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2725,6 +3539,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703565002" lon="11.970628899">
   <ele>34.936836</ele>
 <time>2008-01-27T14:45:56Z</time>
+  <course>320.075500</course>
+  <speed>1.293412</speed>
   <name>TP0390</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2732,6 +3548,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703616230" lon="11.970552717">
   <ele>34.254780</ele>
 <time>2008-01-27T14:46:01Z</time>
+  <course>322.200470</course>
+  <speed>1.592284</speed>
   <name>TP0391</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2739,6 +3557,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703668665" lon="11.970462788">
   <ele>34.248177</ele>
 <time>2008-01-27T14:46:06Z</time>
+  <course>320.091583</course>
+  <speed>1.661003</speed>
   <name>TP0392</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2746,6 +3566,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703734339" lon="11.970374753">
   <ele>34.113022</ele>
 <time>2008-01-27T14:46:11Z</time>
+  <course>321.973114</course>
+  <speed>1.394113</speed>
   <name>TP0393</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2753,6 +3575,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703799899" lon="11.970325330">
   <ele>34.821335</ele>
 <time>2008-01-27T14:46:16Z</time>
+  <course>321.973114</course>
+  <speed>1.494689</speed>
   <name>TP0394</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2760,6 +3584,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703855630" lon="11.970308618">
   <ele>34.473961</ele>
 <time>2008-01-27T14:46:21Z</time>
+  <course>321.973114</course>
+  <speed>1.207032</speed>
   <name>TP0395</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2767,6 +3593,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703895194" lon="11.970387946">
   <ele>34.814793</ele>
 <time>2008-01-27T14:46:26Z</time>
+  <course>321.973114</course>
+  <speed>1.502668</speed>
   <name>TP0396</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2774,6 +3602,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703939196" lon="11.970481079">
   <ele>36.531628</ele>
 <time>2008-01-27T14:46:31Z</time>
+  <course>321.973114</course>
+  <speed>1.572504</speed>
   <name>TP0397</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2781,6 +3611,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703984326" lon="11.970576822">
   <ele>35.942066</ele>
 <time>2008-01-27T14:46:36Z</time>
+  <course>321.973114</course>
+  <speed>1.444465</speed>
   <name>TP0398</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2788,6 +3620,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704017186" lon="11.970695042">
   <ele>36.970840</ele>
 <time>2008-01-27T14:46:41Z</time>
+  <course>321.973114</course>
+  <speed>1.726603</speed>
   <name>TP0399</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2795,6 +3629,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704066750" lon="11.970782903">
   <ele>36.620956</ele>
 <time>2008-01-27T14:46:46Z</time>
+  <course>321.973114</course>
+  <speed>1.378629</speed>
   <name>TP0400</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2802,6 +3638,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704114963" lon="11.970868642">
   <ele>36.710541</ele>
 <time>2008-01-27T14:46:51Z</time>
+  <course>321.973114</course>
+  <speed>1.201835</speed>
   <name>TP0401</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2809,6 +3647,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704112015" lon="11.970976090">
   <ele>38.266098</ele>
 <time>2008-01-27T14:46:56Z</time>
+  <course>321.973114</course>
+  <speed>1.638500</speed>
   <name>TP0402</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -2816,6 +3656,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704099607" lon="11.971028954">
   <ele>39.388645</ele>
 <time>2008-01-27T14:47:01Z</time>
+  <course>321.973114</course>
+  <speed>0.850153</speed>
   <name>TP0403</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2823,6 +3665,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704082150" lon="11.971094574">
   <ele>41.071198</ele>
 <time>2008-01-27T14:47:06Z</time>
+  <course>321.973114</course>
+  <speed>1.181594</speed>
   <name>TP0404</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2830,6 +3674,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704054991" lon="11.971266884">
   <ele>44.571972</ele>
 <time>2008-01-27T14:47:11Z</time>
+  <course>321.973114</course>
+  <speed>1.591521</speed>
   <name>TP0405</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2837,6 +3683,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704054851" lon="11.971486968">
   <ele>45.149620</ele>
 <time>2008-01-27T14:47:16Z</time>
+  <course>103.814293</course>
+  <speed>1.903993</speed>
   <name>TP0406</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2844,6 +3692,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704049107" lon="11.971652223">
   <ele>46.482353</ele>
 <time>2008-01-27T14:47:21Z</time>
+  <course>103.548470</course>
+  <speed>1.411737</speed>
   <name>TP0407</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2851,6 +3701,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704046218" lon="11.971774609">
   <ele>47.727573</ele>
 <time>2008-01-27T14:47:26Z</time>
+  <course>103.548470</course>
+  <speed>1.386361</speed>
   <name>TP0408</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2858,6 +3710,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704029550" lon="11.971917343">
   <ele>50.446995</ele>
 <time>2008-01-27T14:47:31Z</time>
+  <course>110.262627</course>
+  <speed>1.331973</speed>
   <name>TP0409</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2865,6 +3719,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704066705" lon="11.972013969">
   <ele>50.487560</ele>
 <time>2008-01-27T14:47:36Z</time>
+  <course>110.262627</course>
+  <speed>1.747993</speed>
   <name>TP0410</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2872,6 +3728,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704102563" lon="11.972133857">
   <ele>51.564754</ele>
 <time>2008-01-27T14:47:41Z</time>
+  <course>110.262627</course>
+  <speed>1.355807</speed>
   <name>TP0411</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2879,6 +3737,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704207093" lon="11.972208616">
   <ele>45.682472</ele>
 <time>2008-01-27T14:47:46Z</time>
+  <course>110.262627</course>
+  <speed>1.210973</speed>
   <name>TP0412</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2886,6 +3746,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704288162" lon="11.972270911">
   <ele>41.204666</ele>
 <time>2008-01-27T14:47:51Z</time>
+  <course>110.262627</course>
+  <speed>1.413509</speed>
   <name>TP0413</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2893,6 +3755,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704330365" lon="11.972346978">
   <ele>41.814583</ele>
 <time>2008-01-27T14:47:56Z</time>
+  <course>110.262627</course>
+  <speed>1.276915</speed>
   <name>TP0414</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2900,6 +3764,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704372684" lon="11.972406015">
   <ele>42.905079</ele>
 <time>2008-01-27T14:48:01Z</time>
+  <course>110.262627</course>
+  <speed>1.598764</speed>
   <name>TP0415</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2907,6 +3773,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704441213" lon="11.972453465">
   <ele>42.048431</ele>
 <time>2008-01-27T14:48:06Z</time>
+  <course>110.262627</course>
+  <speed>1.731465</speed>
   <name>TP0416</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2914,6 +3782,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704513690" lon="11.972459435">
   <ele>40.197262</ele>
 <time>2008-01-27T14:48:11Z</time>
+  <course>110.262627</course>
+  <speed>1.324286</speed>
   <name>TP0417</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -2921,6 +3791,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704577450" lon="11.972472115">
   <ele>37.296478</ele>
 <time>2008-01-27T14:48:16Z</time>
+  <course>110.262627</course>
+  <speed>1.353854</speed>
   <name>TP0418</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -2928,6 +3800,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704643339" lon="11.972509230">
   <ele>34.941608</ele>
 <time>2008-01-27T14:48:21Z</time>
+  <course>110.262627</course>
+  <speed>1.212386</speed>
   <name>TP0419</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -2935,6 +3809,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704711030" lon="11.972518676">
   <ele>31.461550</ele>
 <time>2008-01-27T14:48:26Z</time>
+  <course>110.262627</course>
+  <speed>1.507033</speed>
   <name>TP0420</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -2942,6 +3818,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704788881" lon="11.972507637">
   <ele>29.878866</ele>
 <time>2008-01-27T14:48:31Z</time>
+  <course>110.262627</course>
+  <speed>1.728915</speed>
   <name>TP0421</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2949,6 +3827,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704843000" lon="11.972505243">
   <ele>28.686647</ele>
 <time>2008-01-27T14:48:36Z</time>
+  <course>110.262627</course>
+  <speed>0.987423</speed>
   <name>TP0422</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -2956,6 +3836,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704922117" lon="11.972432623">
   <ele>28.145824</ele>
 <time>2008-01-27T14:48:41Z</time>
+  <course>110.262627</course>
+  <speed>1.265162</speed>
   <name>TP0423</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2963,6 +3845,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705011508" lon="11.972303649">
   <ele>30.670811</ele>
 <time>2008-01-27T14:48:46Z</time>
+  <course>110.262627</course>
+  <speed>1.836553</speed>
   <name>TP0424</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2970,6 +3854,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705060320" lon="11.972348345">
   <ele>32.307770</ele>
 <time>2008-01-27T14:48:51Z</time>
+  <course>110.262627</course>
+  <speed>1.310898</speed>
   <name>TP0425</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -2977,6 +3863,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705128083" lon="11.972348656">
   <ele>32.628761</ele>
 <time>2008-01-27T14:48:56Z</time>
+  <course>110.262627</course>
+  <speed>1.622816</speed>
   <name>TP0426</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2984,6 +3872,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705202987" lon="11.972322296">
   <ele>33.369404</ele>
 <time>2008-01-27T14:49:01Z</time>
+  <course>110.262627</course>
+  <speed>1.710149</speed>
   <name>TP0427</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2991,6 +3881,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705253851" lon="11.972356937">
   <ele>34.297184</ele>
 <time>2008-01-27T14:49:06Z</time>
+  <course>110.262627</course>
+  <speed>1.097964</speed>
   <name>TP0428</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -2998,6 +3890,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705307339" lon="11.972390305">
   <ele>35.706226</ele>
 <time>2008-01-27T14:49:11Z</time>
+  <course>110.262627</course>
+  <speed>1.243773</speed>
   <name>TP0429</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3005,6 +3899,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705365021" lon="11.972433816">
   <ele>37.490696</ele>
 <time>2008-01-27T14:49:16Z</time>
+  <course>110.262627</course>
+  <speed>1.201586</speed>
   <name>TP0430</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3012,6 +3908,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705434649" lon="11.972468383">
   <ele>37.541157</ele>
 <time>2008-01-27T14:49:21Z</time>
+  <course>110.262627</course>
+  <speed>1.565976</speed>
   <name>TP0431</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3019,6 +3917,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705495649" lon="11.972519343">
   <ele>38.153469</ele>
 <time>2008-01-27T14:49:26Z</time>
+  <course>110.262627</course>
+  <speed>1.327252</speed>
   <name>TP0432</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3026,6 +3926,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705555729" lon="11.972560366">
   <ele>38.474022</ele>
 <time>2008-01-27T14:49:31Z</time>
+  <course>110.262627</course>
+  <speed>1.206724</speed>
   <name>TP0433</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3033,6 +3935,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705625054" lon="11.972577976">
   <ele>38.568634</ele>
 <time>2008-01-27T14:49:36Z</time>
+  <course>110.262627</course>
+  <speed>1.602677</speed>
   <name>TP0434</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3040,6 +3944,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705682553" lon="11.972639048">
   <ele>38.217030</ele>
 <time>2008-01-27T14:49:41Z</time>
+  <course>110.262627</course>
+  <speed>1.495651</speed>
   <name>TP0435</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3047,6 +3953,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705729828" lon="11.972711766">
   <ele>38.042328</ele>
 <time>2008-01-27T14:49:46Z</time>
+  <course>110.262627</course>
+  <speed>1.188114</speed>
   <name>TP0436</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3054,6 +3962,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705796837" lon="11.972769261">
   <ele>37.052139</ele>
 <time>2008-01-27T14:49:51Z</time>
+  <course>110.262627</course>
+  <speed>1.367975</speed>
   <name>TP0437</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3061,6 +3971,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705858054" lon="11.972806102">
   <ele>36.222900</ele>
 <time>2008-01-27T14:49:56Z</time>
+  <course>110.262627</course>
+  <speed>1.819672</speed>
   <name>TP0438</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3068,6 +3980,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705898174" lon="11.972898244">
   <ele>35.862713</ele>
 <time>2008-01-27T14:50:01Z</time>
+  <course>110.262627</course>
+  <speed>1.016674</speed>
   <name>TP0439</name>
   <fix>3d</fix>
   <sat>10</sat>
@@ -3075,6 +3989,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705932924" lon="11.972996816">
   <ele>37.347980</ele>
 <time>2008-01-27T14:50:06Z</time>
+  <course>110.262627</course>
+  <speed>1.323934</speed>
   <name>TP0440</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3082,6 +3998,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705968210" lon="11.973097295">
   <ele>39.428635</ele>
 <time>2008-01-27T14:50:11Z</time>
+  <course>110.262627</course>
+  <speed>1.532402</speed>
   <name>TP0441</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3089,6 +4007,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706017952" lon="11.973184497">
   <ele>38.590481</ele>
 <time>2008-01-27T14:50:16Z</time>
+  <course>110.262627</course>
+  <speed>1.115400</speed>
   <name>TP0442</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3096,6 +4016,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706064519" lon="11.973268530">
   <ele>38.579144</ele>
 <time>2008-01-27T14:50:21Z</time>
+  <course>110.262627</course>
+  <speed>1.374582</speed>
   <name>TP0443</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3103,6 +4025,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706064484" lon="11.973370787">
   <ele>41.594685</ele>
 <time>2008-01-27T14:50:26Z</time>
+  <course>110.262627</course>
+  <speed>1.245201</speed>
   <name>TP0444</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3110,6 +4034,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706096907" lon="11.973469752">
   <ele>43.934750</ele>
 <time>2008-01-27T14:50:31Z</time>
+  <course>110.262627</course>
+  <speed>1.782246</speed>
   <name>TP0445</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3117,6 +4043,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706129514" lon="11.973578808">
   <ele>46.569092</ele>
 <time>2008-01-27T14:50:36Z</time>
+  <course>110.262627</course>
+  <speed>1.470096</speed>
   <name>TP0446</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3124,6 +4052,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706154301" lon="11.973707098">
   <ele>47.493629</ele>
 <time>2008-01-27T14:50:41Z</time>
+  <course>110.262627</course>
+  <speed>1.368854</speed>
   <name>TP0447</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3131,6 +4061,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706197485" lon="11.973811192">
   <ele>48.136349</ele>
 <time>2008-01-27T14:50:46Z</time>
+  <course>110.262627</course>
+  <speed>1.429163</speed>
   <name>TP0448</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3138,6 +4070,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706239257" lon="11.973919899">
   <ele>48.331181</ele>
 <time>2008-01-27T14:50:51Z</time>
+  <course>110.262627</course>
+  <speed>1.393897</speed>
   <name>TP0449</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3145,6 +4079,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706288950" lon="11.974031007">
   <ele>47.542187</ele>
 <time>2008-01-27T14:50:56Z</time>
+  <course>110.262627</course>
+  <speed>1.263732</speed>
   <name>TP0450</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3152,6 +4088,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706375132" lon="11.974092504">
   <ele>44.780071</ele>
 <time>2008-01-27T14:51:01Z</time>
+  <course>110.262627</course>
+  <speed>1.499232</speed>
   <name>TP0451</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3159,6 +4097,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706426517" lon="11.974187165">
   <ele>43.078159</ele>
 <time>2008-01-27T14:51:06Z</time>
+  <course>110.262627</course>
+  <speed>1.535867</speed>
   <name>TP0452</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3166,6 +4106,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706507780" lon="11.974208417">
   <ele>39.632629</ele>
 <time>2008-01-27T14:51:11Z</time>
+  <course>110.262627</course>
+  <speed>1.304739</speed>
   <name>TP0453</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3173,6 +4115,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706592488" lon="11.974214642">
   <ele>36.935654</ele>
 <time>2008-01-27T14:51:16Z</time>
+  <course>110.262627</course>
+  <speed>1.635283</speed>
   <name>TP0454</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3180,6 +4124,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706672467" lon="11.974198739">
   <ele>34.277405</ele>
 <time>2008-01-27T14:51:21Z</time>
+  <course>110.262627</course>
+  <speed>1.336167</speed>
   <name>TP0455</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3187,6 +4133,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706728165" lon="11.974144771">
   <ele>31.132778</ele>
 <time>2008-01-27T14:51:26Z</time>
+  <course>110.262627</course>
+  <speed>1.260236</speed>
   <name>TP0456</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3194,6 +4142,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706803901" lon="11.974122527">
   <ele>31.994057</ele>
 <time>2008-01-27T14:51:31Z</time>
+  <course>110.262627</course>
+  <speed>1.469296</speed>
   <name>TP0457</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3201,6 +4151,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706868446" lon="11.974119242">
   <ele>31.122032</ele>
 <time>2008-01-27T14:51:36Z</time>
+  <course>350.169159</course>
+  <speed>2.057511</speed>
   <name>TP0458</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3208,6 +4160,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706938327" lon="11.974092748">
   <ele>31.005985</ele>
 <time>2008-01-27T14:51:41Z</time>
+  <course>351.339142</course>
+  <speed>1.842231</speed>
   <name>TP0459</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3215,6 +4169,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707008974" lon="11.974071205">
   <ele>31.925455</ele>
 <time>2008-01-27T14:51:46Z</time>
+  <course>348.956848</course>
+  <speed>1.231063</speed>
   <name>TP0460</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3222,6 +4178,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707065698" lon="11.974043404">
   <ele>32.375824</ele>
 <time>2008-01-27T14:51:51Z</time>
+  <course>348.956848</course>
+  <speed>1.022590</speed>
   <name>TP0461</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3229,6 +4187,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707099164" lon="11.974032899">
   <ele>32.349483</ele>
 <time>2008-01-27T14:51:56Z</time>
+  <course>348.956848</course>
+  <speed>1.600391</speed>
   <name>TP0462</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3236,6 +4196,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707189752" lon="11.974033519">
   <ele>31.482601</ele>
 <time>2008-01-27T14:52:01Z</time>
+  <course>348.956848</course>
+  <speed>1.725673</speed>
   <name>TP0463</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3243,6 +4205,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707235578" lon="11.974079670">
   <ele>34.507126</ele>
 <time>2008-01-27T14:52:06Z</time>
+  <course>348.956848</course>
+  <speed>0.978169</speed>
   <name>TP0464</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3250,6 +4214,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707303243" lon="11.974125750">
   <ele>36.687382</ele>
 <time>2008-01-27T14:52:11Z</time>
+  <course>348.956848</course>
+  <speed>1.592462</speed>
   <name>TP0465</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3257,6 +4223,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707354088" lon="11.974067679">
   <ele>35.163441</ele>
 <time>2008-01-27T14:52:16Z</time>
+  <course>348.956848</course>
+  <speed>1.546907</speed>
   <name>TP0466</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3264,6 +4232,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707402992" lon="11.974006332">
   <ele>36.491611</ele>
 <time>2008-01-27T14:52:21Z</time>
+  <course>348.956848</course>
+  <speed>1.383988</speed>
   <name>TP0467</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3271,6 +4241,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707465538" lon="11.973937849">
   <ele>36.348030</ele>
 <time>2008-01-27T14:52:26Z</time>
+  <course>348.956848</course>
+  <speed>1.699179</speed>
   <name>TP0468</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3278,6 +4250,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707508101" lon="11.973871088">
   <ele>35.798428</ele>
 <time>2008-01-27T14:52:31Z</time>
+  <course>348.956848</course>
+  <speed>0.890414</speed>
   <name>TP0469</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3285,6 +4259,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707565743" lon="11.973811050">
   <ele>35.214291</ele>
 <time>2008-01-27T14:52:36Z</time>
+  <course>348.930817</course>
+  <speed>1.420595</speed>
   <name>TP0470</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3292,6 +4268,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707633293" lon="11.973759878">
   <ele>35.049137</ele>
 <time>2008-01-27T14:52:41Z</time>
+  <course>348.930817</course>
+  <speed>1.415599</speed>
   <name>TP0471</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3299,6 +4277,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707654458" lon="11.973644351">
   <ele>34.685078</ele>
 <time>2008-01-27T14:52:46Z</time>
+  <course>348.930817</course>
+  <speed>1.477946</speed>
   <name>TP0472</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3306,6 +4286,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707663474" lon="11.973519278">
   <ele>33.834579</ele>
 <time>2008-01-27T14:52:51Z</time>
+  <course>348.930817</course>
+  <speed>1.562345</speed>
   <name>TP0473</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3313,6 +4295,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707672012" lon="11.973406648">
   <ele>33.943275</ele>
 <time>2008-01-27T14:52:56Z</time>
+  <course>348.930817</course>
+  <speed>1.272014</speed>
   <name>TP0474</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3320,6 +4304,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707657396" lon="11.973286827">
   <ele>33.895531</ele>
 <time>2008-01-27T14:53:01Z</time>
+  <course>348.930817</course>
+  <speed>1.120622</speed>
   <name>TP0475</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3327,6 +4313,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707661366" lon="11.973210583">
   <ele>32.792637</ele>
 <time>2008-01-27T14:53:06Z</time>
+  <course>348.930817</course>
+  <speed>0.046271</speed>
   <name>TP0476</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3334,6 +4322,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707661591" lon="11.973210248">
   <ele>32.800762</ele>
 <time>2008-01-27T14:53:11Z</time>
+  <course>348.930817</course>
+  <speed>0.233082</speed>
   <name>TP0477</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3341,6 +4331,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707658114" lon="11.973269601">
   <ele>32.808544</ele>
 <time>2008-01-27T14:53:16Z</time>
+  <course>348.930817</course>
+  <speed>1.086615</speed>
   <name>TP0478</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3348,6 +4340,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707666094" lon="11.973349431">
   <ele>35.294174</ele>
 <time>2008-01-27T14:53:21Z</time>
+  <course>348.930817</course>
+  <speed>0.872653</speed>
   <name>TP0479</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3355,6 +4349,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707670149" lon="11.973403578">
   <ele>36.032829</ele>
 <time>2008-01-27T14:53:26Z</time>
+  <course>348.930817</course>
+  <speed>0.080512</speed>
   <name>TP0480</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3362,6 +4358,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707672231" lon="11.973403720">
   <ele>36.242550</ele>
 <time>2008-01-27T14:53:31Z</time>
+  <course>348.930817</course>
+  <speed>0.208565</speed>
   <name>TP0481</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3369,6 +4367,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707679731" lon="11.973401047">
   <ele>36.257809</ele>
 <time>2008-01-27T14:53:36Z</time>
+  <course>348.930817</course>
+  <speed>0.159674</speed>
   <name>TP0482</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3376,6 +4376,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707683857" lon="11.973395926">
   <ele>36.275784</ele>
 <time>2008-01-27T14:53:41Z</time>
+  <course>348.930817</course>
+  <speed>0.261805</speed>
   <name>TP0483</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3383,6 +4385,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707694568" lon="11.973377012">
   <ele>36.169346</ele>
 <time>2008-01-27T14:53:46Z</time>
+  <course>348.930817</course>
+  <speed>0.517310</speed>
   <name>TP0484</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3390,6 +4394,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707700849" lon="11.973372603">
   <ele>36.053902</ele>
 <time>2008-01-27T14:53:51Z</time>
+  <course>348.930817</course>
+  <speed>0.005382</speed>
   <name>TP0485</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3397,6 +4403,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707700855" lon="11.973372530">
   <ele>36.035206</ele>
 <time>2008-01-27T14:53:56Z</time>
+  <course>348.930817</course>
+  <speed>0.620699</speed>
   <name>TP0486</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3404,6 +4412,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707700887" lon="11.973360251">
   <ele>36.035797</ele>
 <time>2008-01-27T14:54:01Z</time>
+  <course>348.930817</course>
+  <speed>1.168755</speed>
   <name>TP0487</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3411,6 +4421,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707707168" lon="11.973362929">
   <ele>36.142834</ele>
 <time>2008-01-27T14:54:06Z</time>
+  <course>348.930817</course>
+  <speed>0.064666</speed>
   <name>TP0488</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3418,6 +4430,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707715778" lon="11.973354007">
   <ele>36.185215</ele>
 <time>2008-01-27T14:54:11Z</time>
+  <course>348.930817</course>
+  <speed>0.568796</speed>
   <name>TP0489</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3425,6 +4439,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707699518" lon="11.973299290">
   <ele>35.453949</ele>
 <time>2008-01-27T14:54:16Z</time>
+  <course>348.930817</course>
+  <speed>0.640305</speed>
   <name>TP0490</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3432,6 +4448,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707699980" lon="11.973266624">
   <ele>34.875973</ele>
 <time>2008-01-27T14:54:21Z</time>
+  <course>348.930817</course>
+  <speed>0.469342</speed>
   <name>TP0491</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -3439,6 +4457,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707696846" lon="11.973274410">
   <ele>34.764629</ele>
 <time>2008-01-27T14:54:26Z</time>
+  <course>348.930817</course>
+  <speed>0.048115</speed>
   <name>TP0492</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3446,6 +4466,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707696439" lon="11.973274083">
   <ele>34.832104</ele>
 <time>2008-01-27T14:54:31Z</time>
+  <course>348.930817</course>
+  <speed>0.024468</speed>
   <name>TP0493</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3453,6 +4475,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707694958" lon="11.973274685">
   <ele>34.959030</ele>
 <time>2008-01-27T14:54:36Z</time>
+  <course>348.930817</course>
+  <speed>0.027468</speed>
   <name>TP0494</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3460,6 +4484,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707695300" lon="11.973274992">
   <ele>35.036503</ele>
 <time>2008-01-27T14:54:41Z</time>
+  <course>348.930817</course>
+  <speed>0.000968</speed>
   <name>TP0495</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3467,6 +4493,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707695178" lon="11.973275288">
   <ele>35.044819</ele>
 <time>2008-01-27T14:54:46Z</time>
+  <course>348.930817</course>
+  <speed>0.003053</speed>
   <name>TP0496</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3474,6 +4502,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707695175" lon="11.973275590">
   <ele>35.079132</ele>
 <time>2008-01-27T14:54:51Z</time>
+  <course>348.930817</course>
+  <speed>0.001238</speed>
   <name>TP0497</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3481,6 +4511,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707695284" lon="11.973276581">
   <ele>35.114792</ele>
 <time>2008-01-27T14:54:56Z</time>
+  <course>348.930817</course>
+  <speed>0.001593</speed>
   <name>TP0498</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3488,6 +4520,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707695331" lon="11.973277537">
   <ele>35.142036</ele>
 <time>2008-01-27T14:55:01Z</time>
+  <course>348.930817</course>
+  <speed>0.001471</speed>
   <name>TP0499</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3495,6 +4529,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707695244" lon="11.973277668">
   <ele>35.151981</ele>
 <time>2008-01-27T14:55:06Z</time>
+  <course>348.930817</course>
+  <speed>0.002685</speed>
   <name>TP0500</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3502,6 +4538,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707695391" lon="11.973277863">
   <ele>35.177467</ele>
 <time>2008-01-27T14:55:11Z</time>
+  <course>348.930817</course>
+  <speed>0.033977</speed>
   <name>TP0501</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3509,6 +4547,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707695971" lon="11.973278694">
   <ele>35.209000</ele>
 <time>2008-01-27T14:55:16Z</time>
+  <course>348.930817</course>
+  <speed>0.005408</speed>
   <name>TP0502</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3516,6 +4556,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707692824" lon="11.973292981">
   <ele>35.344204</ele>
 <time>2008-01-27T14:55:21Z</time>
+  <course>348.930817</course>
+  <speed>0.310761</speed>
   <name>TP0503</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -3523,6 +4565,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707691374" lon="11.973297874">
   <ele>35.398499</ele>
 <time>2008-01-27T14:55:26Z</time>
+  <course>348.930817</course>
+  <speed>0.001647</speed>
   <name>TP0504</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -3530,6 +4574,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707691407" lon="11.973298041">
   <ele>35.406319</ele>
 <time>2008-01-27T14:55:31Z</time>
+  <course>348.930817</course>
+  <speed>0.000534</speed>
   <name>TP0505</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3537,6 +4583,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707690993" lon="11.973298941">
   <ele>35.386929</ele>
 <time>2008-01-27T14:55:36Z</time>
+  <course>348.930817</course>
+  <speed>0.006597</speed>
   <name>TP0506</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3544,6 +4592,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707690630" lon="11.973299675">
   <ele>35.373619</ele>
 <time>2008-01-27T14:55:41Z</time>
+  <course>348.930817</course>
+  <speed>0.001887</speed>
   <name>TP0507</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3551,6 +4601,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707690516" lon="11.973299861">
   <ele>35.371105</ele>
 <time>2008-01-27T14:55:46Z</time>
+  <course>348.930817</course>
+  <speed>0.001814</speed>
   <name>TP0508</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3558,6 +4610,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707689539" lon="11.973301466">
   <ele>35.344795</ele>
 <time>2008-01-27T14:55:51Z</time>
+  <course>348.930817</course>
+  <speed>0.003021</speed>
   <name>TP0509</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -3565,6 +4619,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707687821" lon="11.973303528">
   <ele>35.337196</ele>
 <time>2008-01-27T14:55:56Z</time>
+  <course>348.930817</course>
+  <speed>0.091405</speed>
   <name>TP0510</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3572,6 +4628,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707683638" lon="11.973309779">
   <ele>35.323624</ele>
 <time>2008-01-27T14:56:01Z</time>
+  <course>348.930817</course>
+  <speed>0.141361</speed>
   <name>TP0511</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3579,6 +4637,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707675174" lon="11.973319038">
   <ele>35.344074</ele>
 <time>2008-01-27T14:56:06Z</time>
+  <course>348.930817</course>
+  <speed>0.225306</speed>
   <name>TP0512</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3586,6 +4646,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707666065" lon="11.973328005">
   <ele>35.372276</ele>
 <time>2008-01-27T14:56:11Z</time>
+  <course>348.930817</course>
+  <speed>0.218948</speed>
   <name>TP0513</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3593,6 +4655,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707659129" lon="11.973334733">
   <ele>35.406303</ele>
 <time>2008-01-27T14:56:16Z</time>
+  <course>348.930817</course>
+  <speed>0.236625</speed>
   <name>TP0514</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3600,6 +4664,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707650372" lon="11.973343538">
   <ele>35.413681</ele>
 <time>2008-01-27T14:56:21Z</time>
+  <course>348.930817</course>
+  <speed>0.107134</speed>
   <name>TP0515</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3607,6 +4673,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707643934" lon="11.973348964">
   <ele>35.430824</ele>
 <time>2008-01-27T14:56:26Z</time>
+  <course>348.930817</course>
+  <speed>0.985265</speed>
   <name>TP0516</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3614,6 +4682,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707608540" lon="11.973116192">
   <ele>36.105286</ele>
 <time>2008-01-27T14:56:31Z</time>
+  <course>266.844727</course>
+  <speed>4.132751</speed>
   <name>TP0517</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3621,6 +4691,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707578303" lon="11.972757853">
   <ele>37.403809</ele>
 <time>2008-01-27T14:56:36Z</time>
+  <course>259.185059</course>
+  <speed>4.471956</speed>
   <name>TP0518</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3628,6 +4700,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707539515" lon="11.972426788">
   <ele>39.307724</ele>
 <time>2008-01-27T14:56:41Z</time>
+  <course>252.127563</course>
+  <speed>4.437634</speed>
   <name>TP0519</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3635,6 +4709,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707555968" lon="11.972102361">
   <ele>39.680443</ele>
 <time>2008-01-27T14:56:46Z</time>
+  <course>251.846802</course>
+  <speed>3.836235</speed>
   <name>TP0520</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3642,6 +4718,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707435084" lon="11.971864234">
   <ele>38.027061</ele>
 <time>2008-01-27T14:56:51Z</time>
+  <course>209.976074</course>
+  <speed>4.058580</speed>
   <name>TP0521</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3649,6 +4727,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707239680" lon="11.971688984">
   <ele>39.716564</ele>
 <time>2008-01-27T14:56:56Z</time>
+  <course>204.307907</course>
+  <speed>4.588913</speed>
   <name>TP0522</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3656,6 +4736,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707069666" lon="11.971440457">
   <ele>42.343742</ele>
 <time>2008-01-27T14:57:01Z</time>
+  <course>244.933319</course>
+  <speed>5.554557</speed>
   <name>TP0523</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -3663,6 +4745,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706993577" lon="11.970922210">
   <ele>47.920643</ele>
 <time>2008-01-27T14:57:06Z</time>
+  <course>259.753479</course>
+  <speed>5.416070</speed>
   <name>TP0524</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3670,6 +4754,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706961422" lon="11.970467675">
   <ele>53.100410</ele>
 <time>2008-01-27T14:57:11Z</time>
+  <course>252.850159</course>
+  <speed>4.845081</speed>
   <name>TP0525</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3677,6 +4763,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706821821" lon="11.970165772">
   <ele>59.027779</ele>
 <time>2008-01-27T14:57:16Z</time>
+  <course>252.758423</course>
+  <speed>4.991862</speed>
   <name>TP0526</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3684,6 +4772,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706789101" lon="11.969803589">
   <ele>64.524376</ele>
 <time>2008-01-27T14:57:21Z</time>
+  <course>242.889435</course>
+  <speed>3.134435</speed>
   <name>TP0527</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -3691,6 +4781,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706770295" lon="11.969482177">
   <ele>70.053909</ele>
 <time>2008-01-27T14:57:26Z</time>
+  <course>256.679993</course>
+  <speed>2.597404</speed>
   <name>TP0528</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -3698,6 +4790,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706722885" lon="11.969257729">
   <ele>73.381393</ele>
 <time>2008-01-27T14:57:31Z</time>
+  <course>252.173355</course>
+  <speed>0.951098</speed>
   <name>TP0529</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -3705,6 +4799,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706723025" lon="11.969213385">
   <ele>74.317482</ele>
 <time>2008-01-27T14:57:36Z</time>
+  <course>252.173355</course>
+  <speed>0.091881</speed>
   <name>TP0530</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3712,6 +4808,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706723036" lon="11.969205413">
   <ele>74.994987</ele>
 <time>2008-01-27T14:57:41Z</time>
+  <course>252.173355</course>
+  <speed>0.172823</speed>
   <name>TP0531</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -3719,6 +4817,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706723990" lon="11.969196878">
   <ele>75.340546</ele>
 <time>2008-01-27T14:57:46Z</time>
+  <course>252.173355</course>
+  <speed>0.128724</speed>
   <name>TP0532</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -3726,6 +4826,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706725353" lon="11.969195832">
   <ele>75.514122</ele>
 <time>2008-01-27T14:57:51Z</time>
+  <course>252.173355</course>
+  <speed>0.048526</speed>
   <name>TP0533</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3733,6 +4835,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706726361" lon="11.969193875">
   <ele>75.590843</ele>
 <time>2008-01-27T14:57:56Z</time>
+  <course>252.173355</course>
+  <speed>0.058741</speed>
   <name>TP0534</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3740,6 +4844,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706726146" lon="11.969188604">
   <ele>75.640251</ele>
 <time>2008-01-27T14:58:01Z</time>
+  <course>252.173355</course>
+  <speed>0.152493</speed>
   <name>TP0535</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -3747,6 +4853,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706726678" lon="11.969191102">
   <ele>75.699203</ele>
 <time>2008-01-27T14:58:06Z</time>
+  <course>252.173355</course>
+  <speed>0.238902</speed>
   <name>TP0536</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -3754,6 +4862,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706729370" lon="11.969202907">
   <ele>75.752899</ele>
 <time>2008-01-27T14:58:11Z</time>
+  <course>252.173355</course>
+  <speed>0.108655</speed>
   <name>TP0537</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3761,6 +4871,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706729435" lon="11.969200591">
   <ele>75.710106</ele>
 <time>2008-01-27T14:58:16Z</time>
+  <course>252.173355</course>
+  <speed>0.462379</speed>
   <name>TP0538</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -3768,6 +4880,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706702970" lon="11.969112870">
   <ele>76.153221</ele>
 <time>2008-01-27T14:58:21Z</time>
+  <course>254.655457</course>
+  <speed>1.900736</speed>
   <name>TP0539</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3775,6 +4889,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706633676" lon="11.969038162">
   <ele>76.254158</ele>
 <time>2008-01-27T14:58:26Z</time>
+  <course>254.655457</course>
+  <speed>1.152747</speed>
   <name>TP0540</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -3782,6 +4898,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706621474" lon="11.968909727">
   <ele>76.716095</ele>
 <time>2008-01-27T14:58:31Z</time>
+  <course>254.655457</course>
+  <speed>0.652538</speed>
   <name>TP0541</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -3789,6 +4907,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706611997" lon="11.968853803">
   <ele>75.835052</ele>
 <time>2008-01-27T14:58:36Z</time>
+  <course>254.655457</course>
+  <speed>0.137812</speed>
   <name>TP0542</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3796,6 +4916,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706610598" lon="11.968846033">
   <ele>76.115974</ele>
 <time>2008-01-27T14:58:41Z</time>
+  <course>254.655457</course>
+  <speed>0.109070</speed>
   <name>TP0543</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3803,6 +4925,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706609074" lon="11.968839344">
   <ele>76.290184</ele>
 <time>2008-01-27T14:58:46Z</time>
+  <course>254.655457</course>
+  <speed>0.408361</speed>
   <name>TP0544</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -3810,6 +4934,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706582458" lon="11.968766447">
   <ele>75.969826</ele>
 <time>2008-01-27T14:58:51Z</time>
+  <course>254.655457</course>
+  <speed>1.837645</speed>
   <name>TP0545</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -3817,6 +4943,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706521015" lon="11.968529483">
   <ele>77.609825</ele>
 <time>2008-01-27T14:58:56Z</time>
+  <course>235.926590</course>
+  <speed>2.912988</speed>
   <name>TP0546</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -3824,6 +4952,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706387780" lon="11.968257774">
   <ele>71.655617</ele>
 <time>2008-01-27T14:59:01Z</time>
+  <course>270.661957</course>
+  <speed>4.142350</speed>
   <name>TP0547</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3831,6 +4961,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706369450" lon="11.967759842">
   <ele>71.099152</ele>
 <time>2008-01-27T14:59:06Z</time>
+  <course>250.093170</course>
+  <speed>6.080375</speed>
   <name>TP0548</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3838,6 +4970,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706289877" lon="11.967199417">
   <ele>70.996956</ele>
 <time>2008-01-27T14:59:11Z</time>
+  <course>252.321228</course>
+  <speed>6.561866</speed>
   <name>TP0549</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -3845,6 +4979,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706286052" lon="11.966612946">
   <ele>69.959251</ele>
 <time>2008-01-27T14:59:16Z</time>
+  <course>257.005981</course>
+  <speed>6.805053</speed>
   <name>TP0550</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3852,6 +4988,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706223841" lon="11.966022069">
   <ele>68.321487</ele>
 <time>2008-01-27T14:59:21Z</time>
+  <course>257.831085</course>
+  <speed>6.886487</speed>
   <name>TP0551</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3859,6 +4997,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706153563" lon="11.965410008">
   <ele>66.696541</ele>
 <time>2008-01-27T14:59:26Z</time>
+  <course>254.512512</course>
+  <speed>7.342045</speed>
   <name>TP0552</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3866,6 +5006,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706045715" lon="11.964802869">
   <ele>66.792625</ele>
 <time>2008-01-27T14:59:31Z</time>
+  <course>254.280838</course>
+  <speed>7.414184</speed>
   <name>TP0553</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3873,6 +5015,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705963852" lon="11.964192094">
   <ele>64.470802</ele>
 <time>2008-01-27T14:59:36Z</time>
+  <course>252.652267</course>
+  <speed>6.798974</speed>
   <name>TP0554</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3880,6 +5024,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705943170" lon="11.963617982">
   <ele>75.614906</ele>
 <time>2008-01-27T14:59:41Z</time>
+  <course>250.405945</course>
+  <speed>5.200852</speed>
   <name>TP0555</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3887,6 +5033,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705915454" lon="11.963256803">
   <ele>87.300972</ele>
 <time>2008-01-27T14:59:46Z</time>
+  <course>243.778580</course>
+  <speed>4.224462</speed>
   <name>TP0556</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3894,6 +5042,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705843186" lon="11.962969964">
   <ele>89.645264</ele>
 <time>2008-01-27T14:59:51Z</time>
+  <course>220.766418</course>
+  <speed>4.433956</speed>
   <name>TP0557</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3901,6 +5051,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705677805" lon="11.962895954">
   <ele>89.481583</ele>
 <time>2008-01-27T14:59:56Z</time>
+  <course>160.027557</course>
+  <speed>2.849619</speed>
   <name>TP0558</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3908,6 +5060,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705521076" lon="11.963068748">
   <ele>92.977280</ele>
 <time>2008-01-27T15:00:01Z</time>
+  <course>157.697861</course>
+  <speed>3.073200</speed>
   <name>TP0559</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3915,6 +5069,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705354897" lon="11.963201698">
   <ele>92.839066</ele>
 <time>2008-01-27T15:00:06Z</time>
+  <course>156.207596</course>
+  <speed>2.867080</speed>
   <name>TP0560</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3922,6 +5078,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705196518" lon="11.963281685">
   <ele>93.679314</ele>
 <time>2008-01-27T15:00:11Z</time>
+  <course>153.436081</course>
+  <speed>1.521562</speed>
   <name>TP0561</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3929,6 +5087,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705104488" lon="11.963320906">
   <ele>93.570442</ele>
 <time>2008-01-27T15:00:16Z</time>
+  <course>152.649536</course>
+  <speed>1.055535</speed>
   <name>TP0562</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3936,6 +5096,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705001159" lon="11.963385745">
   <ele>94.494698</ele>
 <time>2008-01-27T15:00:21Z</time>
+  <course>152.642792</course>
+  <speed>1.342988</speed>
   <name>TP0563</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3943,6 +5105,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704888623" lon="11.963493546">
   <ele>94.901642</ele>
 <time>2008-01-27T15:00:26Z</time>
+  <course>152.777771</course>
+  <speed>1.967363</speed>
   <name>TP0564</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -3950,6 +5114,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704678574" lon="11.963666622">
   <ele>91.328278</ele>
 <time>2008-01-27T15:00:31Z</time>
+  <course>165.346649</course>
+  <speed>2.701397</speed>
   <name>TP0565</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3957,6 +5123,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704587469" lon="11.963856805">
   <ele>88.451477</ele>
 <time>2008-01-27T15:00:36Z</time>
+  <course>161.263718</course>
+  <speed>0.906314</speed>
   <name>TP0566</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -3964,6 +5132,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704618007" lon="11.963851219">
   <ele>91.141930</ele>
 <time>2008-01-27T15:00:41Z</time>
+  <course>161.263718</course>
+  <speed>0.284965</speed>
   <name>TP0567</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3971,6 +5141,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704623932" lon="11.963854870">
   <ele>92.172508</ele>
 <time>2008-01-27T15:00:46Z</time>
+  <course>161.263718</course>
+  <speed>0.147965</speed>
   <name>TP0568</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3978,6 +5150,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704617767" lon="11.963851131">
   <ele>92.461258</ele>
 <time>2008-01-27T15:00:51Z</time>
+  <course>161.263718</course>
+  <speed>0.056669</speed>
   <name>TP0569</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3985,6 +5159,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704618949" lon="11.963853164">
   <ele>92.556870</ele>
 <time>2008-01-27T15:00:56Z</time>
+  <course>161.263718</course>
+  <speed>0.022265</speed>
   <name>TP0570</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3992,6 +5168,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704614933" lon="11.963851338">
   <ele>92.568306</ele>
 <time>2008-01-27T15:01:01Z</time>
+  <course>161.263718</course>
+  <speed>0.183284</speed>
   <name>TP0571</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -3999,6 +5177,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704505111" lon="11.963849934">
   <ele>92.270767</ele>
 <time>2008-01-27T15:01:06Z</time>
+  <course>164.544937</course>
+  <speed>5.004238</speed>
   <name>TP0572</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4006,6 +5186,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704210826" lon="11.963895383">
   <ele>94.230118</ele>
 <time>2008-01-27T15:01:11Z</time>
+  <course>171.067032</course>
+  <speed>5.614787</speed>
   <name>TP0573</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4013,6 +5195,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703961623" lon="11.964081413">
   <ele>94.349472</ele>
 <time>2008-01-27T15:01:16Z</time>
+  <course>156.786514</course>
+  <speed>5.158871</speed>
   <name>TP0574</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4020,6 +5204,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703689141" lon="11.964229107">
   <ele>95.782722</ele>
 <time>2008-01-27T15:01:21Z</time>
+  <course>164.016251</course>
+  <speed>5.224937</speed>
   <name>TP0575</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4027,6 +5213,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703504721" lon="11.964306338">
   <ele>96.110352</ele>
 <time>2008-01-27T15:01:26Z</time>
+  <course>153.969543</course>
+  <speed>1.648952</speed>
   <name>TP0576</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4034,6 +5222,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703374706" lon="11.964367893">
   <ele>98.264450</ele>
 <time>2008-01-27T15:01:31Z</time>
+  <course>171.187561</course>
+  <speed>2.143247</speed>
   <name>TP0577</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4041,6 +5231,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703182953" lon="11.964365253">
   <ele>101.903290</ele>
 <time>2008-01-27T15:01:36Z</time>
+  <course>199.763306</course>
+  <speed>3.322761</speed>
   <name>TP0578</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4048,6 +5240,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703022276" lon="11.964246776">
   <ele>100.908432</ele>
 <time>2008-01-27T15:01:41Z</time>
+  <course>249.578110</course>
+  <speed>2.721004</speed>
   <name>TP0579</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4055,6 +5249,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702874326" lon="11.963993436">
   <ele>98.441101</ele>
 <time>2008-01-27T15:01:46Z</time>
+  <course>224.093170</course>
+  <speed>1.696266</speed>
   <name>TP0580</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4062,6 +5258,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702809312" lon="11.963962254">
   <ele>99.395744</ele>
 <time>2008-01-27T15:01:51Z</time>
+  <course>224.093170</course>
+  <speed>0.479865</speed>
   <name>TP0581</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4069,6 +5267,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702789387" lon="11.963976047">
   <ele>101.543945</ele>
 <time>2008-01-27T15:01:56Z</time>
+  <course>224.093170</course>
+  <speed>0.332091</speed>
   <name>TP0582</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4076,6 +5276,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702774201" lon="11.963985791">
   <ele>103.097824</ele>
 <time>2008-01-27T15:02:01Z</time>
+  <course>224.093170</course>
+  <speed>0.526310</speed>
   <name>TP0583</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4083,6 +5285,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702749737" lon="11.964036892">
   <ele>104.490097</ele>
 <time>2008-01-27T15:02:06Z</time>
+  <course>224.093170</course>
+  <speed>0.660789</speed>
   <name>TP0584</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4090,6 +5294,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702525822" lon="11.963993613">
   <ele>104.127480</ele>
 <time>2008-01-27T15:02:11Z</time>
+  <course>224.093170</course>
+  <speed>1.696152</speed>
   <name>TP0585</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4097,6 +5303,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702073321" lon="11.964102026">
   <ele>96.356079</ele>
 <time>2008-01-27T15:02:16Z</time>
+  <course>235.937607</course>
+  <speed>4.850880</speed>
   <name>TP0586</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4104,6 +5312,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701923629" lon="11.963715814">
   <ele>97.139885</ele>
 <time>2008-01-27T15:02:21Z</time>
+  <course>224.755081</course>
+  <speed>4.737071</speed>
   <name>TP0587</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4111,6 +5321,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701699739" lon="11.963589942">
   <ele>104.117126</ele>
 <time>2008-01-27T15:02:26Z</time>
+  <course>173.331863</course>
+  <speed>6.159349</speed>
   <name>TP0588</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4118,6 +5330,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701394709" lon="11.963712012">
   <ele>106.810539</ele>
 <time>2008-01-27T15:02:31Z</time>
+  <course>164.963943</course>
+  <speed>6.170879</speed>
   <name>TP0589</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4125,6 +5339,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701177417" lon="11.963957311">
   <ele>106.014999</ele>
 <time>2008-01-27T15:02:36Z</time>
+  <course>155.442062</course>
+  <speed>8.220444</speed>
   <name>TP0590</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4132,6 +5348,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700983886" lon="11.964153305">
   <ele>97.538269</ele>
 <time>2008-01-27T15:02:41Z</time>
+  <course>163.367905</course>
+  <speed>8.647255</speed>
   <name>TP0591</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4139,6 +5357,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700625195" lon="11.964369269">
   <ele>82.294998</ele>
 <time>2008-01-27T15:02:46Z</time>
+  <course>163.726883</course>
+  <speed>6.578135</speed>
   <name>TP0592</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4146,6 +5366,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700461355" lon="11.964561233">
   <ele>78.952164</ele>
 <time>2008-01-27T15:02:51Z</time>
+  <course>149.311813</course>
+  <speed>3.167568</speed>
   <name>TP0593</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4153,6 +5375,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700303239" lon="11.964643612">
   <ele>77.490852</ele>
 <time>2008-01-27T15:02:56Z</time>
+  <course>163.787460</course>
+  <speed>2.939131</speed>
   <name>TP0594</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4160,6 +5384,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700128081" lon="11.964669251">
   <ele>76.258820</ele>
 <time>2008-01-27T15:03:01Z</time>
+  <course>187.778702</course>
+  <speed>4.358074</speed>
   <name>TP0595</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4167,6 +5393,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699922389" lon="11.964395860">
   <ele>73.744034</ele>
 <time>2008-01-27T15:03:06Z</time>
+  <course>232.966171</course>
+  <speed>4.367199</speed>
   <name>TP0596</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -4174,6 +5402,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699827872" lon="11.964054804">
   <ele>74.384712</ele>
 <time>2008-01-27T15:03:11Z</time>
+  <course>252.393066</course>
+  <speed>4.181055</speed>
   <name>TP0597</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4181,6 +5411,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699730717" lon="11.963685054">
   <ele>74.801178</ele>
 <time>2008-01-27T15:03:16Z</time>
+  <course>252.462280</course>
+  <speed>3.949225</speed>
   <name>TP0598</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4188,6 +5420,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699674152" lon="11.963392867">
   <ele>75.366821</ele>
 <time>2008-01-27T15:03:21Z</time>
+  <course>269.982666</course>
+  <speed>2.711499</speed>
   <name>TP0599</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4195,6 +5429,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699590078" lon="11.963112150">
   <ele>72.100449</ele>
 <time>2008-01-27T15:03:26Z</time>
+  <course>293.740234</course>
+  <speed>2.055697</speed>
   <name>TP0600</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4202,6 +5438,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699510047" lon="11.962974996">
   <ele>66.799866</ele>
 <time>2008-01-27T15:03:31Z</time>
+  <course>296.089447</course>
+  <speed>0.724753</speed>
   <name>TP0601</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4209,6 +5447,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699514644" lon="11.962946448">
   <ele>64.158058</ele>
 <time>2008-01-27T15:03:36Z</time>
+  <course>296.089447</course>
+  <speed>0.137567</speed>
   <name>TP0602</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4216,6 +5456,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699518282" lon="11.962946036">
   <ele>64.078674</ele>
 <time>2008-01-27T15:03:41Z</time>
+  <course>296.089447</course>
+  <speed>0.298599</speed>
   <name>TP0603</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4223,6 +5465,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699551563" lon="11.962808437">
   <ele>63.929432</ele>
 <time>2008-01-27T15:03:46Z</time>
+  <course>284.483185</course>
+  <speed>1.926650</speed>
   <name>TP0604</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4230,6 +5474,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699558262" lon="11.962624634">
   <ele>65.153625</ele>
 <time>2008-01-27T15:03:51Z</time>
+  <course>285.790466</course>
+  <speed>1.220710</speed>
   <name>TP0605</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4237,6 +5483,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699566616" lon="11.962460134">
   <ele>64.653687</ele>
 <time>2008-01-27T15:03:56Z</time>
+  <course>285.790466</course>
+  <speed>0.452739</speed>
   <name>TP0606</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4244,6 +5492,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699556394" lon="11.962441908">
   <ele>64.874718</ele>
 <time>2008-01-27T15:04:01Z</time>
+  <course>285.790466</course>
+  <speed>0.111421</speed>
   <name>TP0607</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4251,6 +5501,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699558586" lon="11.962441053">
   <ele>64.960991</ele>
 <time>2008-01-27T15:04:06Z</time>
+  <course>285.790466</course>
+  <speed>0.247384</speed>
   <name>TP0608</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4258,6 +5510,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699567602" lon="11.962444163">
   <ele>65.153725</ele>
 <time>2008-01-27T15:04:11Z</time>
+  <course>285.790466</course>
+  <speed>0.091423</speed>
   <name>TP0609</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4265,6 +5519,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699570870" lon="11.962444491">
   <ele>65.226273</ele>
 <time>2008-01-27T15:04:16Z</time>
+  <course>285.790466</course>
+  <speed>0.102427</speed>
   <name>TP0610</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4272,6 +5528,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699573810" lon="11.962362049">
   <ele>65.064758</ele>
 <time>2008-01-27T15:04:21Z</time>
+  <course>285.790466</course>
+  <speed>1.994403</speed>
   <name>TP0611</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4279,6 +5537,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699596104" lon="11.962082200">
   <ele>63.407185</ele>
 <time>2008-01-27T15:04:26Z</time>
+  <course>277.764008</course>
+  <speed>2.465961</speed>
   <name>TP0612</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4286,6 +5546,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699491789" lon="11.961957912">
   <ele>55.832211</ele>
 <time>2008-01-27T15:04:31Z</time>
+  <course>277.764008</course>
+  <speed>0.090825</speed>
   <name>TP0613</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4293,6 +5555,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699485768" lon="11.961932809">
   <ele>53.711098</ele>
 <time>2008-01-27T15:04:36Z</time>
+  <course>277.764008</course>
+  <speed>0.055088</speed>
   <name>TP0614</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4300,6 +5564,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699489761" lon="11.961933982">
   <ele>52.842609</ele>
 <time>2008-01-27T15:04:41Z</time>
+  <course>277.764008</course>
+  <speed>0.138732</speed>
   <name>TP0615</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4307,6 +5573,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699494145" lon="11.961935914">
   <ele>52.360691</ele>
 <time>2008-01-27T15:04:46Z</time>
+  <course>277.764008</course>
+  <speed>0.054629</speed>
   <name>TP0616</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -4314,6 +5582,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699493852" lon="11.961935038">
   <ele>52.087082</ele>
 <time>2008-01-27T15:04:51Z</time>
+  <course>277.764008</course>
+  <speed>0.087364</speed>
   <name>TP0617</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -4321,6 +5591,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699494222" lon="11.961934948">
   <ele>51.983650</ele>
 <time>2008-01-27T15:04:56Z</time>
+  <course>277.764008</course>
+  <speed>0.027993</speed>
   <name>TP0618</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4328,6 +5600,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699493481" lon="11.961933964">
   <ele>51.904427</ele>
 <time>2008-01-27T15:05:01Z</time>
+  <course>277.764008</course>
+  <speed>0.081911</speed>
   <name>TP0619</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4335,6 +5609,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699496369" lon="11.961934831">
   <ele>51.771957</ele>
 <time>2008-01-27T15:05:06Z</time>
+  <course>277.764008</course>
+  <speed>0.109910</speed>
   <name>TP0620</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -4342,6 +5618,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699501562" lon="11.961937680">
   <ele>51.689781</ele>
 <time>2008-01-27T15:05:11Z</time>
+  <course>277.764008</course>
+  <speed>0.097580</speed>
   <name>TP0621</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -4349,6 +5627,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699500971" lon="11.961937507">
   <ele>51.793804</ele>
 <time>2008-01-27T15:05:16Z</time>
+  <course>277.764008</course>
+  <speed>0.070407</speed>
   <name>TP0622</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -4356,6 +5636,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699517067" lon="11.961828410">
   <ele>51.982742</ele>
 <time>2008-01-27T15:05:21Z</time>
+  <course>276.801270</course>
+  <speed>3.207483</speed>
   <name>TP0623</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4363,6 +5645,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699559926" lon="11.961279915">
   <ele>51.772163</ele>
 <time>2008-01-27T15:05:26Z</time>
+  <course>275.905151</course>
+  <speed>7.975478</speed>
   <name>TP0624</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4370,6 +5654,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699546407" lon="11.960482659">
   <ele>50.279926</ele>
 <time>2008-01-27T15:05:31Z</time>
+  <course>271.913940</course>
+  <speed>9.741137</speed>
   <name>TP0625</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4377,6 +5663,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699593244" lon="11.959533529">
   <ele>48.527409</ele>
 <time>2008-01-27T15:05:36Z</time>
+  <course>277.201416</course>
+  <speed>11.196484</speed>
   <name>TP0626</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -4384,6 +5672,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699641694" lon="11.958591885">
   <ele>45.675247</ele>
 <time>2008-01-27T15:05:41Z</time>
+  <course>273.109436</course>
+  <speed>10.200502</speed>
   <name>TP0627</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4391,6 +5681,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699672808" lon="11.957906314">
   <ele>43.748550</ele>
 <time>2008-01-27T15:05:46Z</time>
+  <course>275.711426</course>
+  <speed>6.957187</speed>
   <name>TP0628</name>
   <fix>3d</fix>
   <sat>5</sat>
@@ -4398,6 +5690,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699676444" lon="11.957452402">
   <ele>41.485603</ele>
 <time>2008-01-27T15:05:51Z</time>
+  <course>275.435974</course>
+  <speed>5.577154</speed>
   <name>TP0629</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4405,6 +5699,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699711791" lon="11.956897483">
   <ele>42.652260</ele>
 <time>2008-01-27T15:05:56Z</time>
+  <course>273.934418</course>
+  <speed>7.368284</speed>
   <name>TP0630</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4412,6 +5708,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699718622" lon="11.956252159">
   <ele>42.952404</ele>
 <time>2008-01-27T15:06:01Z</time>
+  <course>277.044312</course>
+  <speed>7.835956</speed>
   <name>TP0631</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4419,6 +5717,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699765911" lon="11.955613998">
   <ele>41.938480</ele>
 <time>2008-01-27T15:06:06Z</time>
+  <course>284.357452</course>
+  <speed>6.492126</speed>
   <name>TP0632</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4426,6 +5726,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699811903" lon="11.955109096">
   <ele>42.699963</ele>
 <time>2008-01-27T15:06:11Z</time>
+  <course>279.845184</course>
+  <speed>5.134217</speed>
   <name>TP0633</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4433,6 +5735,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699837289" lon="11.954683165">
   <ele>42.642509</ele>
 <time>2008-01-27T15:06:16Z</time>
+  <course>279.834869</course>
+  <speed>5.055449</speed>
   <name>TP0634</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4440,6 +5744,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699884187" lon="11.954261461">
   <ele>39.983074</ele>
 <time>2008-01-27T15:06:21Z</time>
+  <course>283.039490</course>
+  <speed>4.805838</speed>
   <name>TP0635</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4447,6 +5753,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699907757" lon="11.953873092">
   <ele>39.922935</ele>
 <time>2008-01-27T15:06:26Z</time>
+  <course>281.840302</course>
+  <speed>4.442781</speed>
   <name>TP0636</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -4454,6 +5762,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699890076" lon="11.953574367">
   <ele>42.504242</ele>
 <time>2008-01-27T15:06:31Z</time>
+  <course>254.771011</course>
+  <speed>4.003201</speed>
   <name>TP0637</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4461,6 +5771,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699854386" lon="11.953451257">
   <ele>54.257427</ele>
 <time>2008-01-27T15:06:36Z</time>
+  <course>217.023911</course>
+  <speed>1.486765</speed>
   <name>TP0638</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4468,6 +5780,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699875919" lon="11.953419932">
   <ele>60.191071</ele>
 <time>2008-01-27T15:06:41Z</time>
+  <course>217.023911</course>
+  <speed>0.421906</speed>
   <name>TP0639</name>
   <fix>3d</fix>
   <sat>9</sat>
@@ -4475,6 +5789,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699911879" lon="11.953465396">
   <ele>60.932205</ele>
 <time>2008-01-27T15:06:46Z</time>
+  <course>217.023911</course>
+  <speed>0.718218</speed>
   <name>TP0640</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4482,6 +5798,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699927305" lon="11.953492730">
   <ele>57.798515</ele>
 <time>2008-01-27T15:06:51Z</time>
+  <course>217.023911</course>
+  <speed>1.650865</speed>
   <name>TP0641</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4489,6 +5807,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699944121" lon="11.953428165">
   <ele>56.948818</ele>
 <time>2008-01-27T15:06:56Z</time>
+  <course>217.023911</course>
+  <speed>0.651361</speed>
   <name>TP0642</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4496,6 +5816,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699938846" lon="11.953309355">
   <ele>54.779488</ele>
 <time>2008-01-27T15:07:01Z</time>
+  <course>217.023911</course>
+  <speed>1.091384</speed>
   <name>TP0643</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4503,6 +5825,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699934396" lon="11.953215558">
   <ele>53.241680</ele>
 <time>2008-01-27T15:07:06Z</time>
+  <course>218.496490</course>
+  <speed>0.449520</speed>
   <name>TP0644</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4510,6 +5834,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699943796" lon="11.953197620">
   <ele>53.076332</ele>
 <time>2008-01-27T15:07:11Z</time>
+  <course>218.496490</course>
+  <speed>0.360533</speed>
   <name>TP0645</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4517,6 +5843,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699935020" lon="11.953148247">
   <ele>52.866653</ele>
 <time>2008-01-27T15:07:16Z</time>
+  <course>218.496490</course>
+  <speed>0.528669</speed>
   <name>TP0646</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4524,6 +5852,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699926600" lon="11.953080981">
   <ele>52.972622</ele>
 <time>2008-01-27T15:07:21Z</time>
+  <course>218.496490</course>
+  <speed>1.096580</speed>
   <name>TP0647</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4531,6 +5861,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699942919" lon="11.952982565">
   <ele>53.538147</ele>
 <time>2008-01-27T15:07:26Z</time>
+  <course>218.496490</course>
+  <speed>0.625899</speed>
   <name>TP0648</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4538,6 +5870,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699942210" lon="11.952932497">
   <ele>54.323326</ele>
 <time>2008-01-27T15:07:31Z</time>
+  <course>218.496490</course>
+  <speed>0.327272</speed>
   <name>TP0649</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4545,6 +5879,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699937095" lon="11.952929140">
   <ele>54.677227</ele>
 <time>2008-01-27T15:07:36Z</time>
+  <course>218.496490</course>
+  <speed>0.018773</speed>
   <name>TP0650</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4552,6 +5888,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699936301" lon="11.952900552">
   <ele>54.826538</ele>
 <time>2008-01-27T15:07:41Z</time>
+  <course>218.496490</course>
+  <speed>0.505743</speed>
   <name>TP0651</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4559,6 +5897,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699918739" lon="11.952914400">
   <ele>55.053116</ele>
 <time>2008-01-27T15:07:46Z</time>
+  <course>218.496490</course>
+  <speed>0.432382</speed>
   <name>TP0652</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4566,6 +5906,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699919614" lon="11.952919481">
   <ele>55.106789</ele>
 <time>2008-01-27T15:07:51Z</time>
+  <course>218.496490</course>
+  <speed>0.058583</speed>
   <name>TP0653</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4573,6 +5915,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699920340" lon="11.952923572">
   <ele>55.116531</ele>
 <time>2008-01-27T15:07:56Z</time>
+  <course>218.496490</course>
+  <speed>0.006754</speed>
   <name>TP0654</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4580,6 +5924,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699920199" lon="11.952922587">
   <ele>55.115917</ele>
 <time>2008-01-27T15:08:01Z</time>
+  <course>218.496490</course>
+  <speed>0.002260</speed>
   <name>TP0655</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4587,6 +5933,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699920870" lon="11.952921795">
   <ele>55.117039</ele>
 <time>2008-01-27T15:08:06Z</time>
+  <course>218.496490</course>
+  <speed>0.001856</speed>
   <name>TP0656</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4594,6 +5942,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699921055" lon="11.952920961">
   <ele>55.136143</ele>
 <time>2008-01-27T15:08:11Z</time>
+  <course>218.496490</course>
+  <speed>0.000805</speed>
   <name>TP0657</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4601,6 +5951,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699920782" lon="11.952920308">
   <ele>55.148487</ele>
 <time>2008-01-27T15:08:16Z</time>
+  <course>218.496490</course>
+  <speed>0.007480</speed>
   <name>TP0658</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4608,6 +5960,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699920728" lon="11.952920861">
   <ele>55.162659</ele>
 <time>2008-01-27T15:08:21Z</time>
+  <course>218.496490</course>
+  <speed>0.007337</speed>
   <name>TP0659</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4615,6 +5969,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699921713" lon="11.952922607">
   <ele>55.205227</ele>
 <time>2008-01-27T15:08:26Z</time>
+  <course>218.496490</course>
+  <speed>0.046721</speed>
   <name>TP0660</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4622,6 +5978,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699922222" lon="11.952924244">
   <ele>55.188232</ele>
 <time>2008-01-27T15:08:31Z</time>
+  <course>218.496490</course>
+  <speed>0.001944</speed>
   <name>TP0661</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4629,6 +5987,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699922684" lon="11.952924568">
   <ele>55.159225</ele>
 <time>2008-01-27T15:08:36Z</time>
+  <course>218.496490</course>
+  <speed>0.000416</speed>
   <name>TP0662</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4636,6 +5996,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699923046" lon="11.952924923">
   <ele>55.142086</ele>
 <time>2008-01-27T15:08:41Z</time>
+  <course>218.496490</course>
+  <speed>0.009314</speed>
   <name>TP0663</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -4643,6 +6005,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699923266" lon="11.952925204">
   <ele>55.137108</ele>
 <time>2008-01-27T15:08:46Z</time>
+  <course>218.496490</course>
+  <speed>0.001668</speed>
   <name>TP0664</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4650,6 +6014,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699923605" lon="11.952925146">
   <ele>55.102448</ele>
 <time>2008-01-27T15:08:51Z</time>
+  <course>218.496490</course>
+  <speed>0.007567</speed>
   <name>TP0665</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4657,6 +6023,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699927974" lon="11.952919524">
   <ele>55.135281</ele>
 <time>2008-01-27T15:08:56Z</time>
+  <course>218.496490</course>
+  <speed>0.269319</speed>
   <name>TP0666</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4664,6 +6032,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699939185" lon="11.952908667">
   <ele>55.178482</ele>
 <time>2008-01-27T15:09:01Z</time>
+  <course>218.496490</course>
+  <speed>0.262931</speed>
   <name>TP0667</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4671,6 +6041,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699944583" lon="11.952898064">
   <ele>55.160194</ele>
 <time>2008-01-27T15:09:06Z</time>
+  <course>218.496490</course>
+  <speed>0.002955</speed>
   <name>TP0668</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4678,6 +6050,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699944599" lon="11.952898187">
   <ele>55.152924</ele>
 <time>2008-01-27T15:09:11Z</time>
+  <course>218.496490</course>
+  <speed>0.040493</speed>
   <name>TP0669</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4685,6 +6059,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699945028" lon="11.952900434">
   <ele>55.263668</ele>
 <time>2008-01-27T15:09:16Z</time>
+  <course>218.496490</course>
+  <speed>0.005129</speed>
   <name>TP0670</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4692,6 +6068,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699945292" lon="11.952901285">
   <ele>55.369980</ele>
 <time>2008-01-27T15:09:21Z</time>
+  <course>218.496490</course>
+  <speed>0.035897</speed>
   <name>TP0671</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4699,6 +6077,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699945336" lon="11.952903132">
   <ele>55.426929</ele>
 <time>2008-01-27T15:09:26Z</time>
+  <course>218.496490</course>
+  <speed>0.004630</speed>
   <name>TP0672</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4706,6 +6086,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699945648" lon="11.952904661">
   <ele>55.402885</ele>
 <time>2008-01-27T15:09:31Z</time>
+  <course>218.496490</course>
+  <speed>0.000865</speed>
   <name>TP0673</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4713,6 +6095,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699947667" lon="11.952907039">
   <ele>55.452240</ele>
 <time>2008-01-27T15:09:36Z</time>
+  <course>218.496490</course>
+  <speed>0.001837</speed>
   <name>TP0674</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -4720,6 +6104,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699948818" lon="11.952909106">
   <ele>55.465645</ele>
 <time>2008-01-27T15:09:41Z</time>
+  <course>218.496490</course>
+  <speed>0.002016</speed>
   <name>TP0675</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4727,6 +6113,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699949074" lon="11.952910467">
   <ele>55.428730</ele>
 <time>2008-01-27T15:09:46Z</time>
+  <course>218.496490</course>
+  <speed>0.001942</speed>
   <name>TP0676</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4734,6 +6122,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699948933" lon="11.952911661">
   <ele>55.371540</ele>
 <time>2008-01-27T15:09:51Z</time>
+  <course>218.496490</course>
+  <speed>0.004365</speed>
   <name>TP0677</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4741,6 +6131,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699949643" lon="11.952911730">
   <ele>55.368378</ele>
 <time>2008-01-27T15:09:56Z</time>
+  <course>218.496490</course>
+  <speed>0.001333</speed>
   <name>TP0678</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4748,6 +6140,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699950219" lon="11.952911931">
   <ele>55.364956</ele>
 <time>2008-01-27T15:10:01Z</time>
+  <course>218.496490</course>
+  <speed>0.001297</speed>
   <name>TP0679</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4755,6 +6149,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699950736" lon="11.952912661">
   <ele>55.386986</ele>
 <time>2008-01-27T15:10:06Z</time>
+  <course>218.496490</course>
+  <speed>0.002019</speed>
   <name>TP0680</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4762,6 +6158,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699951350" lon="11.952913599">
   <ele>55.424679</ele>
 <time>2008-01-27T15:10:11Z</time>
+  <course>218.496490</course>
+  <speed>0.003237</speed>
   <name>TP0681</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4769,6 +6167,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699951642" lon="11.952913734">
   <ele>55.468376</ele>
 <time>2008-01-27T15:10:16Z</time>
+  <course>218.496490</course>
+  <speed>0.001680</speed>
   <name>TP0682</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4776,6 +6176,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699952149" lon="11.952914300">
   <ele>55.533737</ele>
 <time>2008-01-27T15:10:21Z</time>
+  <course>218.496490</course>
+  <speed>0.045060</speed>
   <name>TP0683</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4783,6 +6185,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699953300" lon="11.952915278">
   <ele>55.539864</ele>
 <time>2008-01-27T15:10:26Z</time>
+  <course>218.496490</course>
+  <speed>0.001506</speed>
   <name>TP0684</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4790,6 +6194,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699953515" lon="11.952915799">
   <ele>55.562237</ele>
 <time>2008-01-27T15:10:31Z</time>
+  <course>218.496490</course>
+  <speed>0.239861</speed>
   <name>TP0685</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4797,6 +6203,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699957108" lon="11.952943420">
   <ele>55.626358</ele>
 <time>2008-01-27T15:10:36Z</time>
+  <course>218.496490</course>
+  <speed>0.197063</speed>
   <name>TP0686</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4804,6 +6212,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699956610" lon="11.952962370">
   <ele>55.744625</ele>
 <time>2008-01-27T15:10:41Z</time>
+  <course>218.496490</course>
+  <speed>0.055380</speed>
   <name>TP0687</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4811,6 +6221,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699956712" lon="11.952961188">
   <ele>55.884129</ele>
 <time>2008-01-27T15:10:46Z</time>
+  <course>218.496490</course>
+  <speed>0.050798</speed>
   <name>TP0688</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4818,6 +6230,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699955827" lon="11.952958002">
   <ele>55.963707</ele>
 <time>2008-01-27T15:10:51Z</time>
+  <course>218.496490</course>
+  <speed>0.103979</speed>
   <name>TP0689</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -4825,6 +6239,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699962323" lon="11.952964102">
   <ele>56.060684</ele>
 <time>2008-01-27T15:10:56Z</time>
+  <course>218.496490</course>
+  <speed>0.118978</speed>
   <name>TP0690</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -4832,6 +6248,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699962554" lon="11.952963685">
   <ele>56.129726</ele>
 <time>2008-01-27T15:11:01Z</time>
+  <course>218.496490</course>
+  <speed>0.057695</speed>
   <name>TP0691</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -4839,6 +6257,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699962474" lon="11.952965140">
   <ele>56.174274</ele>
 <time>2008-01-27T15:11:06Z</time>
+  <course>218.496490</course>
+  <speed>0.059240</speed>
   <name>TP0692</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -4846,6 +6266,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699963082" lon="11.952968505">
   <ele>56.225285</ele>
 <time>2008-01-27T15:11:11Z</time>
+  <course>218.496490</course>
+  <speed>0.201704</speed>
   <name>TP0693</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4853,6 +6275,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699962112" lon="11.952960115">
   <ele>56.230228</ele>
 <time>2008-01-27T15:11:16Z</time>
+  <course>218.496490</course>
+  <speed>0.397796</speed>
   <name>TP0694</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4860,6 +6284,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699955902" lon="11.952936874">
   <ele>56.249668</ele>
 <time>2008-01-27T15:11:21Z</time>
+  <course>218.496490</course>
+  <speed>0.045781</speed>
   <name>TP0695</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4867,6 +6293,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699956772" lon="11.952938435">
   <ele>56.405598</ele>
 <time>2008-01-27T15:11:26Z</time>
+  <course>218.496490</course>
+  <speed>0.098648</speed>
   <name>TP0696</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4874,6 +6302,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699956625" lon="11.952927863">
   <ele>56.498055</ele>
 <time>2008-01-27T15:11:31Z</time>
+  <course>218.496490</course>
+  <speed>1.669990</speed>
   <name>TP0697</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4881,6 +6311,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699971868" lon="11.952891545">
   <ele>56.564190</ele>
 <time>2008-01-27T15:11:36Z</time>
+  <course>218.496490</course>
+  <speed>0.197046</speed>
   <name>TP0698</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4888,6 +6320,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699969522" lon="11.952871303">
   <ele>56.543667</ele>
 <time>2008-01-27T15:11:41Z</time>
+  <course>218.496490</course>
+  <speed>0.086945</speed>
   <name>TP0699</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4895,6 +6329,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699970723" lon="11.952878710">
   <ele>56.581444</ele>
 <time>2008-01-27T15:11:46Z</time>
+  <course>218.496490</course>
+  <speed>0.237207</speed>
   <name>TP0700</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4902,6 +6338,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699973506" lon="11.952893298">
   <ele>56.630741</ele>
 <time>2008-01-27T15:11:51Z</time>
+  <course>218.496490</course>
+  <speed>0.278322</speed>
   <name>TP0701</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4909,6 +6347,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699976723" lon="11.952908646">
   <ele>56.684647</ele>
 <time>2008-01-27T15:11:56Z</time>
+  <course>218.496490</course>
+  <speed>0.168554</speed>
   <name>TP0702</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4916,6 +6356,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699976083" lon="11.952912640">
   <ele>56.785572</ele>
 <time>2008-01-27T15:12:01Z</time>
+  <course>218.496490</course>
+  <speed>0.189623</speed>
   <name>TP0703</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4923,6 +6365,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699973468" lon="11.952896203">
   <ele>56.875393</ele>
 <time>2008-01-27T15:12:06Z</time>
+  <course>218.496490</course>
+  <speed>0.205831</speed>
   <name>TP0704</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4930,6 +6374,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699971249" lon="11.952879892">
   <ele>56.934406</ele>
 <time>2008-01-27T15:12:11Z</time>
+  <course>218.496490</course>
+  <speed>0.146626</speed>
   <name>TP0705</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4937,6 +6383,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699969323" lon="11.952864889">
   <ele>56.986214</ele>
 <time>2008-01-27T15:12:16Z</time>
+  <course>218.496490</course>
+  <speed>0.204477</speed>
   <name>TP0706</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4944,6 +6392,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699967601" lon="11.952844574">
   <ele>57.043221</ele>
 <time>2008-01-27T15:12:21Z</time>
+  <course>218.496490</course>
+  <speed>0.206466</speed>
   <name>TP0707</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4951,6 +6401,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699968809" lon="11.952847611">
   <ele>57.112270</ele>
 <time>2008-01-27T15:12:26Z</time>
+  <course>218.496490</course>
+  <speed>0.285062</speed>
   <name>TP0708</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4958,6 +6410,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699973562" lon="11.952879020">
   <ele>57.175644</ele>
 <time>2008-01-27T15:12:31Z</time>
+  <course>218.496490</course>
+  <speed>0.962515</speed>
   <name>TP0709</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4965,6 +6419,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699849121" lon="11.953252962">
   <ele>56.505943</ele>
 <time>2008-01-27T15:12:36Z</time>
+  <course>86.427399</course>
+  <speed>5.513577</speed>
   <name>TP0710</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4972,6 +6428,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699865180" lon="11.953857144">
   <ele>56.468739</ele>
 <time>2008-01-27T15:12:41Z</time>
+  <course>96.587524</course>
+  <speed>6.088407</speed>
   <name>TP0711</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4979,6 +6437,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699947206" lon="11.954556885">
   <ele>58.681587</ele>
 <time>2008-01-27T15:12:46Z</time>
+  <course>99.175896</course>
+  <speed>7.924136</speed>
   <name>TP0712</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -4986,6 +6446,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699934187" lon="11.955259127">
   <ele>59.009224</ele>
 <time>2008-01-27T15:12:51Z</time>
+  <course>97.125023</course>
+  <speed>6.783049</speed>
   <name>TP0713</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -4993,6 +6455,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699900251" lon="11.955945753">
   <ele>58.753296</ele>
 <time>2008-01-27T15:12:56Z</time>
+  <course>98.056587</course>
+  <speed>7.935850</speed>
   <name>TP0714</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5000,6 +6464,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699844889" lon="11.956682402">
   <ele>61.154079</ele>
 <time>2008-01-27T15:13:01Z</time>
+  <course>95.442360</course>
+  <speed>6.358071</speed>
   <name>TP0715</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5007,6 +6473,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699755760" lon="11.957160537">
   <ele>58.161404</ele>
 <time>2008-01-27T15:13:06Z</time>
+  <course>100.822197</course>
+  <speed>3.633513</speed>
   <name>TP0716</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -5014,6 +6482,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699720958" lon="11.957412895">
   <ele>56.524601</ele>
 <time>2008-01-27T15:13:11Z</time>
+  <course>100.060211</course>
+  <speed>1.667719</speed>
   <name>TP0717</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5021,6 +6491,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699652975" lon="11.957519767">
   <ele>51.497704</ele>
 <time>2008-01-27T15:13:16Z</time>
+  <course>100.060211</course>
+  <speed>0.945564</speed>
   <name>TP0718</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5028,6 +6500,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699638963" lon="11.957837949">
   <ele>49.657547</ele>
 <time>2008-01-27T15:13:21Z</time>
+  <course>97.457619</course>
+  <speed>5.678153</speed>
   <name>TP0719</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5035,6 +6509,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699575899" lon="11.958569812">
   <ele>47.381596</ele>
 <time>2008-01-27T15:13:26Z</time>
+  <course>97.820015</course>
+  <speed>8.726044</speed>
   <name>TP0720</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5042,6 +6518,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699543126" lon="11.959268104">
   <ele>45.864742</ele>
 <time>2008-01-27T15:13:31Z</time>
+  <course>96.406525</course>
+  <speed>7.575697</speed>
   <name>TP0721</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5049,6 +6527,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699505774" lon="11.959893594">
   <ele>44.151070</ele>
 <time>2008-01-27T15:13:36Z</time>
+  <course>99.171577</course>
+  <speed>6.320168</speed>
   <name>TP0722</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5056,6 +6536,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699466396" lon="11.960413599">
   <ele>43.129993</ele>
 <time>2008-01-27T15:13:41Z</time>
+  <course>96.029564</course>
+  <speed>5.716181</speed>
   <name>TP0723</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5063,6 +6545,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699564142" lon="11.960881761">
   <ele>42.655632</ele>
 <time>2008-01-27T15:13:46Z</time>
+  <course>87.960152</course>
+  <speed>5.187541</speed>
   <name>TP0724</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5070,6 +6554,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699614278" lon="11.961304817">
   <ele>47.126694</ele>
 <time>2008-01-27T15:13:51Z</time>
+  <course>94.451820</course>
+  <speed>4.599480</speed>
   <name>TP0725</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5077,6 +6563,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699580132" lon="11.961678902">
   <ele>45.114143</ele>
 <time>2008-01-27T15:13:56Z</time>
+  <course>89.539085</course>
+  <speed>1.616679</speed>
   <name>TP0726</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5084,6 +6572,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699556463" lon="11.961757835">
   <ele>43.373066</ele>
 <time>2008-01-27T15:14:01Z</time>
+  <course>89.539085</course>
+  <speed>0.130123</speed>
   <name>TP0727</name>
   <fix>3d</fix>
   <sat>8</sat>
@@ -5091,6 +6581,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699557203" lon="11.961768475">
   <ele>42.926678</ele>
 <time>2008-01-27T15:14:06Z</time>
+  <course>89.539085</course>
+  <speed>0.037990</speed>
   <name>TP0728</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5098,6 +6590,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699556862" lon="11.961771720">
   <ele>42.838966</ele>
 <time>2008-01-27T15:14:11Z</time>
+  <course>89.539085</course>
+  <speed>0.066600</speed>
   <name>TP0729</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5105,6 +6599,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699555896" lon="11.961769028">
   <ele>42.808662</ele>
 <time>2008-01-27T15:14:16Z</time>
+  <course>89.539085</course>
+  <speed>0.032890</speed>
   <name>TP0730</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5112,6 +6608,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699545844" lon="11.961855891">
   <ele>42.931995</ele>
 <time>2008-01-27T15:14:21Z</time>
+  <course>89.725197</course>
+  <speed>1.613370</speed>
   <name>TP0731</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5119,6 +6617,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699520999" lon="11.962033060">
   <ele>42.628716</ele>
 <time>2008-01-27T15:14:26Z</time>
+  <course>76.366776</course>
+  <speed>1.858435</speed>
   <name>TP0732</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5126,6 +6626,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699462045" lon="11.962171736">
   <ele>43.564449</ele>
 <time>2008-01-27T15:14:31Z</time>
+  <course>76.366776</course>
+  <speed>1.088116</speed>
   <name>TP0733</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5133,6 +6635,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699440954" lon="11.962246582">
   <ele>43.326889</ele>
 <time>2008-01-27T15:14:36Z</time>
+  <course>76.366776</course>
+  <speed>0.334308</speed>
   <name>TP0734</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5140,6 +6644,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699438584" lon="11.962241708">
   <ele>43.177864</ele>
 <time>2008-01-27T15:14:41Z</time>
+  <course>76.366776</course>
+  <speed>0.121621</speed>
   <name>TP0735</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5147,6 +6653,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699439187" lon="11.962252603">
   <ele>43.118587</ele>
 <time>2008-01-27T15:14:46Z</time>
+  <course>76.366776</course>
+  <speed>0.180330</speed>
   <name>TP0736</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5154,6 +6662,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699438289" lon="11.962255006">
   <ele>42.983402</ele>
 <time>2008-01-27T15:14:51Z</time>
+  <course>76.366776</course>
+  <speed>0.220678</speed>
   <name>TP0737</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5161,6 +6671,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699436922" lon="11.962259972">
   <ele>42.937031</ele>
 <time>2008-01-27T15:14:56Z</time>
+  <course>76.366776</course>
+  <speed>0.209586</speed>
   <name>TP0738</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5168,6 +6680,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699436616" lon="11.962274966">
   <ele>42.942562</ele>
 <time>2008-01-27T15:15:01Z</time>
+  <course>76.366776</course>
+  <speed>0.383057</speed>
   <name>TP0739</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5175,6 +6689,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699440270" lon="11.962306237">
   <ele>42.979713</ele>
 <time>2008-01-27T15:15:06Z</time>
+  <course>76.366776</course>
+  <speed>0.535772</speed>
   <name>TP0740</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5182,6 +6698,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699435546" lon="11.962362065">
   <ele>43.011913</ele>
 <time>2008-01-27T15:15:11Z</time>
+  <course>76.366776</course>
+  <speed>1.207049</speed>
   <name>TP0741</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5189,6 +6707,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699432720" lon="11.962760772">
   <ele>43.784576</ele>
 <time>2008-01-27T15:15:16Z</time>
+  <course>49.888649</course>
+  <speed>2.445696</speed>
   <name>TP0742</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5196,6 +6716,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699513986" lon="11.963014007">
   <ele>43.211819</ele>
 <time>2008-01-27T15:15:21Z</time>
+  <course>52.977341</course>
+  <speed>1.469321</speed>
   <name>TP0743</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5203,6 +6725,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699555647" lon="11.963181809">
   <ele>42.772743</ele>
 <time>2008-01-27T15:15:26Z</time>
+  <course>52.977341</course>
+  <speed>0.912314</speed>
   <name>TP0744</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5210,6 +6734,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699583833" lon="11.963253823">
   <ele>42.345959</ele>
 <time>2008-01-27T15:15:31Z</time>
+  <course>54.474190</course>
+  <speed>1.039766</speed>
   <name>TP0745</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5217,6 +6743,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699627466" lon="11.963502095">
   <ele>41.845848</ele>
 <time>2008-01-27T15:15:36Z</time>
+  <course>75.363075</course>
+  <speed>2.503152</speed>
   <name>TP0746</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5224,6 +6752,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.699843504" lon="11.964098283">
   <ele>41.465397</ele>
 <time>2008-01-27T15:15:41Z</time>
+  <course>18.042631</course>
+  <speed>4.031073</speed>
   <name>TP0747</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5231,6 +6761,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700102530" lon="11.964226055">
   <ele>39.201557</ele>
 <time>2008-01-27T15:15:46Z</time>
+  <course>350.312469</course>
+  <speed>5.227849</speed>
   <name>TP0748</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5238,6 +6770,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700418477" lon="11.964097586">
   <ele>34.905659</ele>
 <time>2008-01-27T15:15:51Z</time>
+  <course>338.893219</course>
+  <speed>7.202540</speed>
   <name>TP0749</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5245,6 +6779,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.700755626" lon="11.963998873">
   <ele>29.181751</ele>
 <time>2008-01-27T15:15:56Z</time>
+  <course>342.903381</course>
+  <speed>7.421690</speed>
   <name>TP0750</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5252,6 +6788,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701147879" lon="11.963834189">
   <ele>26.025524</ele>
 <time>2008-01-27T15:16:01Z</time>
+  <course>338.657623</course>
+  <speed>8.680714</speed>
   <name>TP0751</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5259,6 +6797,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701490426" lon="11.963610483">
   <ele>24.058689</ele>
 <time>2008-01-27T15:16:06Z</time>
+  <course>341.594208</course>
+  <speed>6.506355</speed>
   <name>TP0752</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5266,6 +6806,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.701791636" lon="11.963398675">
   <ele>24.503670</ele>
 <time>2008-01-27T15:16:11Z</time>
+  <course>334.948120</course>
+  <speed>5.052996</speed>
   <name>TP0753</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5273,6 +6815,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702045197" lon="11.963252914">
   <ele>21.750463</ele>
 <time>2008-01-27T15:16:16Z</time>
+  <course>339.453552</course>
+  <speed>4.743180</speed>
   <name>TP0754</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5280,6 +6824,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702263058" lon="11.963225726">
   <ele>21.274805</ele>
 <time>2008-01-27T15:16:21Z</time>
+  <course>21.269533</course>
+  <speed>3.732276</speed>
   <name>TP0755</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5287,6 +6833,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702455783" lon="11.963405511">
   <ele>24.930449</ele>
 <time>2008-01-27T15:16:26Z</time>
+  <course>57.253983</course>
+  <speed>2.689401</speed>
   <name>TP0756</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5294,6 +6842,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702515996" lon="11.963538350">
   <ele>23.571939</ele>
 <time>2008-01-27T15:16:31Z</time>
+  <course>57.935402</course>
+  <speed>0.575326</speed>
   <name>TP0757</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5301,6 +6851,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702540729" lon="11.963530167">
   <ele>21.758852</ele>
 <time>2008-01-27T15:16:36Z</time>
+  <course>57.935402</course>
+  <speed>0.272819</speed>
   <name>TP0758</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5308,6 +6860,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702546897" lon="11.963525658">
   <ele>20.467566</ele>
 <time>2008-01-27T15:16:41Z</time>
+  <course>57.935402</course>
+  <speed>0.075399</speed>
   <name>TP0759</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5315,6 +6869,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702546474" lon="11.963525700">
   <ele>20.074856</ele>
 <time>2008-01-27T15:16:46Z</time>
+  <course>57.935402</course>
+  <speed>0.070384</speed>
   <name>TP0760</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5322,6 +6878,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702555318" lon="11.963521124">
   <ele>19.931931</ele>
 <time>2008-01-27T15:16:51Z</time>
+  <course>57.935402</course>
+  <speed>0.713890</speed>
   <name>TP0761</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5329,6 +6887,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702602076" lon="11.963766490">
   <ele>20.842930</ele>
 <time>2008-01-27T15:16:56Z</time>
+  <course>63.193348</course>
+  <speed>3.130648</speed>
   <name>TP0762</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5336,6 +6896,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702688212" lon="11.964082616">
   <ele>21.649963</ele>
 <time>2008-01-27T15:17:01Z</time>
+  <course>68.431618</course>
+  <speed>3.442213</speed>
   <name>TP0763</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5343,6 +6905,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.702855812" lon="11.964401722">
   <ele>25.562002</ele>
 <time>2008-01-27T15:17:06Z</time>
+  <course>32.924171</course>
+  <speed>3.361054</speed>
   <name>TP0764</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5350,6 +6914,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703015889" lon="11.964419672">
   <ele>26.968969</ele>
 <time>2008-01-27T15:17:11Z</time>
+  <course>344.355225</course>
+  <speed>4.310341</speed>
   <name>TP0765</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5357,6 +6923,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703239616" lon="11.964281221">
   <ele>27.406101</ele>
 <time>2008-01-27T15:17:16Z</time>
+  <course>341.821838</course>
+  <speed>5.076190</speed>
   <name>TP0766</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5364,6 +6932,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703472221" lon="11.964122127">
   <ele>27.535704</ele>
 <time>2008-01-27T15:17:21Z</time>
+  <course>339.747223</course>
+  <speed>4.408119</speed>
   <name>TP0767</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5371,6 +6941,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.703718574" lon="11.964035776">
   <ele>28.154795</ele>
 <time>2008-01-27T15:17:26Z</time>
+  <course>341.113464</course>
+  <speed>4.573566</speed>
   <name>TP0768</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5378,6 +6950,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704017597" lon="11.963951433">
   <ele>24.246796</ele>
 <time>2008-01-27T15:17:31Z</time>
+  <course>339.732819</course>
+  <speed>4.079585</speed>
   <name>TP0769</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5385,6 +6959,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704236029" lon="11.963844527">
   <ele>23.303711</ele>
 <time>2008-01-27T15:17:36Z</time>
+  <course>339.514862</course>
+  <speed>1.597809</speed>
   <name>TP0770</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5392,6 +6968,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704272959" lon="11.963827601">
   <ele>24.946005</ele>
 <time>2008-01-27T15:17:41Z</time>
+  <course>339.514862</course>
+  <speed>0.156533</speed>
   <name>TP0771</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5399,6 +6977,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704273955" lon="11.963826138">
   <ele>24.590355</ele>
 <time>2008-01-27T15:17:46Z</time>
+  <course>339.514862</course>
+  <speed>0.142250</speed>
   <name>TP0772</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5406,6 +6986,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704285374" lon="11.963817864">
   <ele>24.535629</ele>
 <time>2008-01-27T15:17:51Z</time>
+  <course>339.514862</course>
+  <speed>0.360152</speed>
   <name>TP0773</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5413,6 +6995,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704304614" lon="11.963806486">
   <ele>24.427177</ele>
 <time>2008-01-27T15:17:56Z</time>
+  <course>339.514862</course>
+  <speed>0.361612</speed>
   <name>TP0774</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5420,6 +7004,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704318481" lon="11.963798775">
   <ele>24.243149</ele>
 <time>2008-01-27T15:18:01Z</time>
+  <course>339.514862</course>
+  <speed>0.431612</speed>
   <name>TP0775</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5427,6 +7013,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704340514" lon="11.963785730">
   <ele>24.084087</ele>
 <time>2008-01-27T15:18:06Z</time>
+  <course>339.514862</course>
+  <speed>0.555251</speed>
   <name>TP0776</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5434,6 +7022,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704430500" lon="11.963722647">
   <ele>24.227612</ele>
 <time>2008-01-27T15:18:11Z</time>
+  <course>346.195099</course>
+  <speed>3.421367</speed>
   <name>TP0777</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5441,6 +7031,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704654644" lon="11.963558663">
   <ele>24.550591</ele>
 <time>2008-01-27T15:18:16Z</time>
+  <course>332.352997</course>
+  <speed>5.118948</speed>
   <name>TP0778</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5448,6 +7040,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.704829590" lon="11.963399179">
   <ele>24.790329</ele>
 <time>2008-01-27T15:18:21Z</time>
+  <course>339.528839</course>
+  <speed>4.719919</speed>
   <name>TP0779</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5455,6 +7049,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705047224" lon="11.963266015">
   <ele>24.882000</ele>
 <time>2008-01-27T15:18:26Z</time>
+  <course>337.760681</course>
+  <speed>3.929679</speed>
   <name>TP0780</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5462,6 +7058,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705213301" lon="11.963116742">
   <ele>24.885988</ele>
 <time>2008-01-27T15:18:31Z</time>
+  <course>326.768158</course>
+  <speed>3.181422</speed>
   <name>TP0781</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5469,6 +7067,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705493067" lon="11.963112266">
   <ele>22.894363</ele>
 <time>2008-01-27T15:18:36Z</time>
+  <course>36.511124</course>
+  <speed>4.846198</speed>
   <name>TP0782</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5476,6 +7076,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705665052" lon="11.963496047">
   <ele>21.994968</ele>
 <time>2008-01-27T15:18:41Z</time>
+  <course>62.685516</course>
+  <speed>5.946139</speed>
   <name>TP0783</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5483,6 +7085,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.705843795" lon="11.963942511">
   <ele>20.402012</ele>
 <time>2008-01-27T15:18:46Z</time>
+  <course>61.447033</course>
+  <speed>6.089304</speed>
   <name>TP0784</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5490,6 +7094,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706063171" lon="11.964528962">
   <ele>18.011835</ele>
 <time>2008-01-27T15:18:51Z</time>
+  <course>70.627136</course>
+  <speed>7.146325</speed>
   <name>TP0785</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5497,6 +7103,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706222273" lon="11.964977269">
   <ele>16.479000</ele>
 <time>2008-01-27T15:18:56Z</time>
+  <course>72.116966</course>
+  <speed>5.706940</speed>
   <name>TP0786</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5504,6 +7112,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706334302" lon="11.965581173">
   <ele>15.727952</ele>
 <time>2008-01-27T15:19:01Z</time>
+  <course>72.860649</course>
+  <speed>6.682722</speed>
   <name>TP0787</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5511,6 +7121,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706397574" lon="11.966138898">
   <ele>13.501931</ele>
 <time>2008-01-27T15:19:06Z</time>
+  <course>74.065750</course>
+  <speed>5.324975</speed>
   <name>TP0788</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5518,6 +7130,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706417826" lon="11.966594578">
   <ele>12.321080</ele>
 <time>2008-01-27T15:19:11Z</time>
+  <course>81.119461</course>
+  <speed>3.683437</speed>
   <name>TP0789</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5525,6 +7139,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706454953" lon="11.966898926">
   <ele>11.192452</ele>
 <time>2008-01-27T15:19:16Z</time>
+  <course>75.343231</course>
+  <speed>2.929381</speed>
   <name>TP0790</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5532,6 +7148,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706396303" lon="11.967248614">
   <ele>9.391747</ele>
 <time>2008-01-27T15:19:21Z</time>
+  <course>69.857574</course>
+  <speed>2.541023</speed>
   <name>TP0791</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5539,6 +7157,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706403813" lon="11.967521803">
   <ele>7.392978</ele>
 <time>2008-01-27T15:19:26Z</time>
+  <course>95.088768</course>
+  <speed>3.015811</speed>
   <name>TP0792</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5546,6 +7166,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706430658" lon="11.967937357">
   <ele>11.171357</ele>
 <time>2008-01-27T15:19:31Z</time>
+  <course>48.301205</course>
+  <speed>2.121240</speed>
   <name>TP0793</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5553,6 +7175,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706614582" lon="11.968096848">
   <ele>16.152731</ele>
 <time>2008-01-27T15:19:36Z</time>
+  <course>345.122620</course>
+  <speed>3.099985</speed>
   <name>TP0794</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5560,6 +7184,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706756669" lon="11.968033285">
   <ele>15.429770</ele>
 <time>2008-01-27T15:19:41Z</time>
+  <course>349.252014</course>
+  <speed>3.720629</speed>
   <name>TP0795</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5567,6 +7193,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.706943683" lon="11.968147031">
   <ele>18.443081</ele>
 <time>2008-01-27T15:19:46Z</time>
+  <course>49.279705</course>
+  <speed>4.131574</speed>
   <name>TP0796</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5574,6 +7202,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707025728" lon="11.968484235">
   <ele>17.724062</ele>
 <time>2008-01-27T15:19:51Z</time>
+  <course>70.644554</course>
+  <speed>4.497624</speed>
   <name>TP0797</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5581,6 +7211,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707104243" lon="11.968838190">
   <ele>16.861166</ele>
 <time>2008-01-27T15:19:56Z</time>
+  <course>64.961960</course>
+  <speed>3.303369</speed>
   <name>TP0798</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5588,6 +7220,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707145784" lon="11.968940388">
   <ele>16.343344</ele>
 <time>2008-01-27T15:20:01Z</time>
+  <course>57.725773</course>
+  <speed>0.167609</speed>
   <name>TP0799</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5595,6 +7229,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707140251" lon="11.968924129">
   <ele>17.903362</ele>
 <time>2008-01-27T15:20:06Z</time>
+  <course>57.725773</course>
+  <speed>0.082964</speed>
   <name>TP0800</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5602,6 +7238,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707141317" lon="11.968930938">
   <ele>17.818550</ele>
 <time>2008-01-27T15:20:11Z</time>
+  <course>57.725773</course>
+  <speed>0.161319</speed>
   <name>TP0801</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5609,6 +7247,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707144465" lon="11.968943991">
   <ele>17.827591</ele>
 <time>2008-01-27T15:20:16Z</time>
+  <course>57.725773</course>
+  <speed>0.130852</speed>
   <name>TP0802</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5616,6 +7256,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707146508" lon="11.968951097">
   <ele>17.853209</ele>
 <time>2008-01-27T15:20:21Z</time>
+  <course>57.725773</course>
+  <speed>0.068195</speed>
   <name>TP0803</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5623,6 +7265,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707149841" lon="11.968959470">
   <ele>17.841661</ele>
 <time>2008-01-27T15:20:26Z</time>
+  <course>57.725773</course>
+  <speed>0.183443</speed>
   <name>TP0804</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5630,6 +7274,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707154437" lon="11.968965905">
   <ele>17.868876</ele>
 <time>2008-01-27T15:20:31Z</time>
+  <course>57.725773</course>
+  <speed>0.195327</speed>
   <name>TP0805</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5637,6 +7283,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707161561" lon="11.968979219">
   <ele>17.897980</ele>
 <time>2008-01-27T15:20:36Z</time>
+  <course>57.725773</course>
+  <speed>0.249844</speed>
   <name>TP0806</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5644,6 +7292,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707165887" lon="11.968988338">
   <ele>17.911112</ele>
 <time>2008-01-27T15:20:41Z</time>
+  <course>57.725773</course>
+  <speed>0.274289</speed>
   <name>TP0807</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5651,6 +7301,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707168433" lon="11.968992165">
   <ele>17.954067</ele>
 <time>2008-01-27T15:20:46Z</time>
+  <course>57.725773</course>
+  <speed>0.199295</speed>
   <name>TP0808</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5658,6 +7310,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707169357" lon="11.968990043">
   <ele>18.035896</ele>
 <time>2008-01-27T15:20:51Z</time>
+  <course>57.725773</course>
+  <speed>0.061631</speed>
   <name>TP0809</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5665,6 +7319,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707170836" lon="11.968995460">
   <ele>18.049931</ele>
 <time>2008-01-27T15:20:56Z</time>
+  <course>57.725773</course>
+  <speed>0.232345</speed>
   <name>TP0810</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5672,6 +7328,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707206276" lon="11.969190620">
   <ele>18.316492</ele>
 <time>2008-01-27T15:21:01Z</time>
+  <course>68.676346</course>
+  <speed>5.247779</speed>
   <name>TP0811</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5679,6 +7337,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707278103" lon="11.969674883">
   <ele>20.202015</ele>
 <time>2008-01-27T15:21:06Z</time>
+  <course>77.141609</course>
+  <speed>6.035380</speed>
   <name>TP0812</name>
   <fix>3d</fix>
   <sat>6</sat>
@@ -5686,6 +7346,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707348899" lon="11.970166648">
   <ele>21.015213</ele>
 <time>2008-01-27T15:21:11Z</time>
+  <course>79.136803</course>
+  <speed>6.096270</speed>
   <name>TP0813</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5693,6 +7355,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707424418" lon="11.970710418">
   <ele>22.754051</ele>
 <time>2008-01-27T15:21:16Z</time>
+  <course>73.930702</course>
+  <speed>5.832743</speed>
   <name>TP0814</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5700,6 +7364,8 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707448325" lon="11.971055495">
   <ele>25.730627</ele>
 <time>2008-01-27T15:21:20Z</time>
+  <course>76.704651</course>
+  <speed>4.485237</speed>
   <name>TP0815</name>
   <fix>3d</fix>
   <sat>7</sat>
@@ -5707,12 +7373,16 @@ xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/
 <trkpt lat="57.707408790" lon="11.971353747">
   <ele>29.132912</ele>
 <time>2008-01-27T18:13:26.129Z</time>
+  <course>0.000000</course>
+  <speed>0.000000</speed>
   <name>TP0816</name>
   <fix>none</fix>
 </trkpt>
 <trkpt lat="57.707408790" lon="11.971353747">
   <ele>29.132912</ele>
 <time>2008-01-27T18:13:31.929Z</time>
+  <course>0.000000</course>
+  <speed>0.000000</speed>
   <name>TP0817</name>
   <fix>none</fix>
 </trkpt>
index cc098a9c79e5da6a90e71892d1fd086e56a4428c..940283630a5872bf477d36ca60ee920f41d0f629 100644 (file)
@@ -1,12 +1,26 @@
-<para>File protocol for MTK based GPS loggers.
+<para>Binary file protocol converter for MTK based GPS loggers.
 This format reads the raw binary format created by the MTK Windows application
-and outputs to other gpsbabel suppoted formats. 
-When using the csv option a MTK application compatible output file will also be created.</para>
+and outputs to other gpsbabel supported formats. 
+When using the csv option a MTK application compatible output file will also be created.
+
+It has been tested with <productname>Transystem i-Blue 747</productname> but other devices should
+work as well (Qstarz BT-Q1000, iTrek Z1, ...)
+
+All position items (including button push) will be listed as trackpoints in the output. 
+Log items due to button push are presented as waypoints. 
+In theory we would not add waypoints to the list of trackpoints. But as the MTK logger restart the 
+log session from the button press we would loose a trackpoint unless we include/duplicate it.
+
+</para>
 <para>
 <ulink url="http://www.transystem.com.tw/p-gps-iblue747.htm">Transystem i-Blue 747</ulink>
 </para>
 <example id="mtk-bin-on-linux">
-  <title>Command showing conversion of a MTK binary file to GPX with an additional CSV output file.</title>
-  <para><userinput>gpsbabel -i mtk-bin,csv=extra.csv -f data.bin -o gpx -F out.gpx</userinput></para>
+  <title>Convert MTK binary trackpoints to GPX</title>
+  <para>
+  <userinput>gpsbabel -t -i mtk-bin,csv=extra.csv -f data.bin -o gpx -F out.gpx</userinput>
+   Additionally a CSV output file is created.
+  </para>
+
 </example>
 
index 0bf4e4b2de2196770a9a87b131d5a8f732109283..db92c521b870eda418ca4a129731fcb2c1938468 100644 (file)
@@ -1,11 +1,21 @@
 <para>Serial download protocol for the <productname>i-Blue 747</productname> and other MTK based GPS data loggers. Observe that it is only possible to download data using USB cable, Bluetooth requires a hardware modification.</para>
 <para>
 <ulink url="http://www.transystem.com.tw/p-gps-iblue747.htm">Transystem i-Blue 747</ulink>
-Downloaded data will be storef in data.bin file in the current directory together with
+Downloaded data will be stored in data.bin file in the current directory together with
 the choosen output format.
 </para>
+<para>It has been tested with Transystem i-Blue 747 but other devices should work as well (Qstarz BT-Q1000, iTrek Z1, ...)</para>
+
+<para>See <link linkend="fmt_mtk-bin">mtk-bin</link> on how trackpoints/waypoints are handled</para>
 <example id="mtk-on-linux">
-  <title>Command showing MTK download and erase on Linux</title>
+  <title>Command showing MTK download track and waypoints and erase on Linux</title>
   <para><userinput>gpsbabel -t -w -i mtk,erase -f /dev/ttyUSB0 -o gpx -F out.gpx</userinput></para>
 </example>
     
+<para>
+  For more info and tweaks on MTK based loggers: 
+   <ulink url="http://www.gpspassion.com/forumsen/topic.asp?TOPIC_ID=81990">MTK Tips ans Tweaks</ulink>
+   <ulink url="http://www.gpspassion.com/forumsen/topic.asp?TOPIC_ID=81315">iBlue 747 Logger</ulink>
+ For info about the used log format:
+  <ulink url="http://spreadsheets.google.com/pub?key=pyCLH-0TdNe-5N-5tBokuOA&gid=5">MTK binary format</ulink>
+</para>